-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
70 lines (70 loc) · 2.33 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
{
"name": "ept",
"version": "0.3.1",
"license": "MIT",
"type": "module",
"scripts": {
"doc:dev": "rspress dev",
"doc:build": "pnpm doc:gen && pnpm doc:translate --check && rspress build",
"doc:preview": "rspress preview",
"doc:gen": "tsx scripts/gen_wiki/index.ts",
"doc:translate": "cd ./scripts/translate_wiki && tsx index.ts",
"chatgpt-md-translator": "cd ./scripts/translate_wiki && chatgpt-md-translator",
"lint": "biome check --write scripts/",
"prepare": "npx simple-git-hooks && rustup component add clippy",
"rs:lint": "cargo fmt && cargo clippy --fix --allow-dirty --allow-staged",
"rs:ut": "cargo test -- --test-threads 1",
"rs:ut:html": "cargo tarpaulin -o html --exclude-files test/** --exclude-files node_modules/** && start tarpaulin-report.html",
"rs:ut:xml": "cargo tarpaulin -o xml --exclude-files test/** --exclude-files node_modules/**",
"bump": "tsx scripts/release_version/bump_version.ts",
"rs:build": "cmd /c scripts\\vc_ltl\\build.bat",
"rs:release": "tsx scripts/release_version/build_release.ts"
},
"dependencies": {
"@types/minimist": "^1.2.5",
"@types/semver": "^7.5.8",
"git-cliff": "^2.7.0",
"minimist": "^1.2.8",
"rcedit": "^4.0.1",
"react": "^18.3.1",
"rspress": "^1.43.10",
"semver": "^7.7.1",
"smol-toml": "^1.3.1",
"typescript": "^5.8.2"
},
"devDependencies": {
"@actions/core": "^1.11.1",
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@commitlint/types": "^19.5.0",
"@modern-js/tsconfig": "2.67.0",
"@rspress/plugin-shiki": "^1.43.3",
"@types/node": "^22.14.0",
"chatgpt-md-translator": "^1.7.1",
"lint-staged": "^15.4.1",
"simple-git-hooks": "^2.11.1",
"ts-results": "^3.3.0",
"tsx": "^4.19.2"
},
"optionalDependencies": {
"git-cliff-darwin-arm64": "^2.7.0",
"git-cliff-darwin-x64": "^2.7.0",
"git-cliff-linux-x64": "^2.7.0",
"git-cliff-windows-arm64": "^2.7.0",
"git-cliff-windows-x64": "^2.7.0"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "npx --no -- commitlint --edit $1"
},
"packageManager": "pnpm@10.6.2",
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"core-js",
"esbuild",
"simple-git-hooks"
]
}
}