-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.21 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
{
"name": "@cyia/localize",
"version": "0.0.0",
"description": "Angular 本地化独立版本;Angular localize standalone version",
"scripts": {
"sync:localize": "code-recycle ./script/sync-localize.ts --cwd ./src ",
"test": "rimraf ./test/fixture-output && node --import tsx --inspect ./node_modules/.bin/mocha \"test/**/*.ts\"",
"build": "rimraf ./dist && tsx ./script/build.cli.ts && tsc -p ./tsconfig.build-import.json && tsx ./script/build.import.ts && cpx \"./*.md\" ./dist && cpx ./src/package.json ./dist && npm run i18n:convert",
"release-publish": "npm run build && npm --registry=http://192.168.31.88:5555 publish ./dist",
"i18n:init": "tsx ./src/bin/index.ts ./src ./i18n-meta --update --name zh-Hans",
"i18n:convert": "tsx ./src/bin/index.ts convert ./i18n-meta ./dist/bin/i18n"
},
"author": "wszgrcy",
"private": true,
"devDependencies": {
"@types/chai": "^4.3.14",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.30",
"chai": "5.1.0",
"cpx": "^1.5.0",
"esbuild": "^0.20.2",
"mocha": "^10.3.0",
"rimraf": "^5.0.5",
"tsx": "^4.7.1"
},
"dependencies": {
"@code-recycle/cli": "1.3.10",
"commander": "12.0.0",
"yaml": "2.4.1"
}
}