-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.22 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
{
"name": "static-injector",
"version": "0.0.0",
"description": "Angular 依赖注入独立版本;Angular dependency injection standalone version",
"private": true,
"scripts": {
"sync": "code-recycle ./script/sync/index.ts --cwd ./src && prettier ./src --write",
"test": " npm run test:import",
"test:import": "cross-env TS_NODE_PROJECT=./tsconfig.spec.json jest --config ./jest.import.config.ts",
"build": "rimraf dist&& cpx ./src/package.json ./dist && cpx -v ./readme.md ./dist && npm run build:import",
"build:import": "tsc -p ./tsconfig.import.json && tsx ./script/build"
},
"author": "wszgrcy",
"license": "MIT",
"peerDependencies": {
"typescript": ">=5.4.2"
},
"devDependencies": {
"@code-recycle/cli": "1.3.10",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"cpx": "^1.5.0",
"cross-env": "^7.0.3",
"husky": "^7.0.1",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0",
"rimraf": "^5.0.5",
"rollup": "~4.17.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.7.3",
"typescript": "5.4.5"
}
}