-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.31 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
{
"name": "exource",
"version": "0.2.0",
"description": "一款扫描 js 源码并生成辅助代码的工具",
"scripts": {
"build": "npm run mkdir && npm run rollup && npm run chmod && npm run ln && npm run cp",
"mkdir": "rm build -rf && mkdir build",
"rollup": "rollup -c",
"chmod": "chmod +x build/cli.mjs",
"ln": "mkdir build/node_modules; ln -s .. build/node_modules/exource",
"cp": "cp LICENSE README.* build",
"lint": "eslint --fix --ext .ts src"
},
"author": "猛火 Fierflame",
"engines": {
"node": ">=16"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://gitee.com/fierflame/exource.git"
},
"bugs": {
"url": "https://gitee.com/fierflame/exource/issues"
},
"homepage": "https://gitee.com/fierflame/exource#git-readme",
"dependencies": {
"chokidar": "^3.5.3",
"cosmiconfig": "^7.0.1",
"fast-glob": "^3.2.11",
"json5": "^2.2.1",
"kleur": "^4.1.4",
"resolve": "^1.22.0",
"yaml": "^2.0.1"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/plugin-transform-typescript": "^7.16.8",
"@types/node": "^17.0.31",
"rollup": "^2.71.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-dts": "^4.2.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0"
}
}