forked from johnlindquist/kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
132 lines (132 loc) · 3.54 KB
/
package.json
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "@johnlindquist/kit",
"type": "module",
"bin": {
"kit": "./bin/kit",
"sk": "./bin/sk",
"kitblitz": "./bin/kitblitz.mjs"
},
"engines": {
"node": ">=14.8.0"
},
"version": "0.0.0-development",
"description": "The Script Kit sdk",
"repository": "github:johnlindquist/kit",
"exports": {
".": "./index.js",
"./*": "./*",
"./api/*": "./api/*.js",
"./cli/*": "./cli/*.js",
"./target/*": "./target/*.js",
"./platform/*": "./platform/*.js",
"./run/*": "./run/*.js",
"./core/*": "./core/*.js",
"./cjs/*": "./core/*.cjs"
},
"types": "./types/index.d.ts",
"scripts": {
"build-kit": "node ./build/build-kit.js",
"rebuild-kit": "node ./build/rebuild-kit.js",
"dev": "tsc --watch --outDir ~/.kit",
"declaration": "tsc -p ./tsconfig-declaration.json --watch",
"pretest:core": "node ./scripts/test-pre.js",
"test:core": "NODE_NO_WARNINGS=1 ava ./src/core/*.test.js --no-worker-threads",
"posttest:core": "node ./scripts/test-post.js",
"pretest": "node ./scripts/test-pre.js",
"test": "NODE_NO_WARNINGS=1 ava --no-worker-threads",
"posttest": "node ./scripts/test-post.js",
"cjs": "source ./build/set-env-vars.sh && npx tsc --project ./tsconfig-cjs.json --outDir \"$KIT/cjs\" && node ./scripts/cjs-fix.js",
"build-editor-types": " kit ./build/build-editor-types.ts",
"rebuild-test": "npm run rebuild-kit && npm run test -- --fail-fast"
},
"author": "John Lindquist (https://johnlindquist.com)",
"license": "ISC",
"dependencies": {
"@johnlindquist/globals": "^1.14.19",
"@johnlindquist/kit-internal": "^1.13.3",
"@octokit/auth-oauth-device": "4.0.4",
"@octokit/core": "4.2.0",
"@octokit/plugin-paginate-rest": "6.0.0",
"@octokit/plugin-rest-endpoint-methods": "7.0.1",
"@octokit/plugin-retry": "4.1.3",
"@octokit/plugin-throttling": "5.0.1",
"@types/node-notifier": "8.0.2",
"@types/shelljs": "0.8.11",
"advanced-calculator": "1.1.0",
"esbuild": "^0.17.15",
"file-icon": "5.1.1",
"filesize": "10.0.7",
"googlethis": "*",
"highlight.js": "11.7.0",
"node-notifier": "10.0.1",
"open": "9.1.0",
"rimraf": "5.0.0",
"shelljs": "0.8.5",
"slugify": "1.6.6",
"suggestion": "2.1.2",
"trash": "8.1.1",
"zx": "7.2.1"
},
"devDependencies": {
"@types/debug": "4.1.7",
"@types/express": "4.17.17",
"@types/express-ws": "3.0.1",
"@types/node": "18.15.11",
"@types/node-ipc": "9.2.0",
"ava": "4.3.3",
"debug": "4.3.4",
"semantic-release": "21.0.1",
"semantic-release-plugin-update-version-in-files": "1.1.0",
"tsc-watch": "6.0.0",
"typedoc": "0.23.28",
"typedoc-plugin-markdown": "3.14.0",
"typescript": "5.0.3",
"unzipper": "0.10.11"
},
"ava": {
"environmentVariables": {
"KIT_TEST": "true"
},
"verbose": true,
"files": [
"src/**/*.test.js",
"test/**/*.test.js"
]
},
"release": {
"branches": [
"+([0-9]).x",
"main",
"next",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"pkgRoot": "./.kit"
}
],
[
"semantic-release-plugin-update-version-in-files",
{
"files": [
"./.kit/package.json"
]
}
]
]
},
"volta": {
"node": "18.15.0"
}
}