-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.86 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@anthonyhagi/kit-node-sdk",
"type": "module",
"version": "0.3.2",
"description": "An unofficial TypeScript/Node.js SDK for the KIT.com API, providing a simple and easy-to-use interface.",
"author": "Anthony Hagidimitriou <info@anthonyhagi.com.au>",
"license": "MIT",
"homepage": "https://github.com/anthonyhagi/kit-node-sdk#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/anthonyhagi/kit-node-sdk.git"
},
"bugs": {
"url": "https://github.com/anthonyhagi/kit-node-sdk/issues"
},
"keywords": [
"kit.com",
"kit",
"v4",
"convert kit",
"convert kit.com",
"convertkit"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"LICENSE",
"README.md",
"dist"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsdown",
"clean": "rm -rf dist",
"typecheck": "tsc",
"lint": "eslint .",
"lint:package": "publint",
"format": "prettier -w .",
"test": "vitest run",
"changeset": "changeset",
"prerelease:ci": "npm run build",
"release:ci": "changeset publish --access public"
},
"devDependencies": {
"@arethetypeswrong/core": "^0.18.2",
"@changesets/cli": "^2.29.7",
"@sxzz/eslint-config": "^7.8.3",
"@types/node": "^24.10.1",
"eslint": "^10.0.0",
"jiti": "^2.6.1",
"prettier": "^3.6.2",
"publint": "^0.3.15",
"tsdown": "^0.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.13",
"vitest-fetch-mock": "^0.4.5"
}
}