-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
103 lines (103 loc) · 2.61 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
{
"name": "tdesign-starter-cli",
"version": "0.5.3",
"description": "CLI tool for TDesign Starter project",
"type": "module",
"main": "./src/main.ts",
"lib": "./bin/index.js",
"bin": {
"td-starter": "./bin/index.js"
},
"typings": "./src/types/index.d.ts",
"scripts": {
"watch": "rollup -w -c",
"test": "npm run dev",
"dev": "node ./bin/index.js",
"prebuild": "rimraf bin/",
"build": "rollup -c ",
"lint": "eslint 'src/**/*.{js,ts}'",
"site": "echo 'no need to build site'",
"site:preview": "echo 'no need to run site preview'"
},
"repository": {
"type": "git",
"url": "https://github.com/tencent/tdesign-starter-cli.git"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "7.24.1",
"@babel/core": "7.24.4",
"@babel/eslint-plugin": "^7.23.5",
"@babel/plugin-proposal-export-default-from": "7.24.1",
"@babel/plugin-transform-runtime": "7.24.3",
"@babel/preset-env": "7.24.4",
"@babel/preset-typescript": "^7.24.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/babel__core": "^7.20.5",
"@types/node": "^22.1.0",
"@types/shelljs": "^0.8.15",
"@typescript-eslint/eslint-plugin": "7.7.0",
"@typescript-eslint/parser": "7.7.0",
"babel-loader": "9.1.3",
"eslint": "^8.56.0",
"prettier": "^3.2.5",
"rollup": "^4.29.1",
"rollup-plugin-copy": "3.5.0"
},
"dependencies": {
"@babel/plugin-transform-typescript": "^7.24.4",
"@babel/runtime": "7.24.4",
"@types/chalk": "2.2.0",
"@types/commander": "2.12.2",
"@types/fs-extra": "11.0.4",
"@types/inquirer": "9.0.7",
"@types/node": "20.12.7",
"@types/rimraf": "4.0.5",
"axios": "~1.7.4",
"chalk": "5.3.0",
"clear": "0.1.0",
"commander": "12.0.0",
"del": "7.1.0",
"download-git-repo": "3.0.2",
"figlet": "1.7.0",
"fs-extra": "11.2.0",
"glob": "^10.3.12",
"husky": "9.0.11",
"inquirer": "9.2.19",
"is-ci": "3.0.1",
"lint-staged": "15.2.2",
"lodash": "4.17.21",
"minimist": "1.2.8",
"ora": "8.0.1",
"rimraf": "5.0.5",
"shelljs": "^0.8.5",
"tslib": "2.6.2",
"typescript": "5.4.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,json}": [
"prettier --write",
"npm run lint"
]
},
"files": [
"bin/*",
"dist/*",
"types/*",
"package.json",
"docs/*",
"template/*"
],
"engines": {
"node": ">=16.0.0"
}
}