-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.15 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
{
"name": "z-utils-repo",
"private": true,
"version": "1.0.0",
"description": "工具库仓库",
"scripts": {
"build:utils": "cd utils && node build.js && tsc --outDir cmd --module CommonJS && tsc",
"clean:utils": "cd utils && rimraf lib dist types coverage",
"tsc:watch": "cd utils && tsc --watch",
"test:unit": "cd tests/unit && npx jest --watchAll",
"test:web": "cd tests/web && webpack serve",
"docs:dev": "cd docs && npx typedoc && npx vitepress dev",
"docs:build": "cd docs && npx typedoc && npx vitepress build",
"docs:preview": "cd docs && npx vitepress preview",
"md": "cd docs && npx typedoc --options one/typedoc.json",
"publish:latest": "cd utils && npm publish --tag latest",
"publish:beta": "cd utils && npm publish --tag beta"
},
"author": "zhoufeng",
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@babel/preset-typescript": "^7.24.1",
"@types/node": "^20.12.12",
"babel": "^6.23.0",
"babel-loader": "^9.1.3",
"core-js": "^3.37.1",
"ts-loader": "^9.5.1",
"tslib": "^2.6.2",
"typescript": "^5.4.5",
"webpack": "^5.91.0"
}
}