-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
62 lines (62 loc) · 1.74 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
{
"name": "create-ks-project",
"version": "4.1.2",
"repository": {
"type": "git",
"url": "https://github.com/kubesphere/create-ks-project"
},
"license": "MIT",
"main": "index.js",
"bin": {
"create-ks-project": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "rimraf ./dist/ && ncc build ./index.ts -o ./dist/ --minify --no-cache --no-source-map-register",
"changeset:add": "changeset add",
"dev": "ncc build ./index.ts -w -o dist/",
"release": "changeset version && changeset publish"
},
"dependencies": {
"@types/node": "^12.6.8",
"@types/prompts": "2.0.1",
"@types/rimraf": "3.0.0",
"@types/tar": "4.0.3",
"@types/validate-npm-package-name": "3.0.0",
"@vercel/ncc": "0.33.4",
"async-retry": "1.3.3",
"chalk": "2.4.2",
"cli-progress": "^3.11.2",
"commander": "2.20.0",
"cpy": "7.3.0",
"cross-spawn": "6.0.5",
"fs-extra": "^10.1.0",
"got": "10.7.0",
"prompts": "2.1.0",
"rimraf": "3.0.0",
"tar": "4.4.10",
"update-check": "1.5.4",
"validate-npm-package-name": "3.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@types/async-retry": "1.4.5",
"@types/cli-progress": "3.11.0",
"@types/cross-spawn": "^6.0.2",
"@types/fs-extra": "^8.0.1",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.0",
"prettier": "^2.6.2",
"typescript": "4.6.3"
}
}