-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.3 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.3 KB
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
71
72
{
"name": "ept",
"version": "0.4.9",
"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",
"ts:check": "tsc --noEmit -p tsconfig.json --skipLibCheck",
"lint": "biome check --write scripts/ doc/",
"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.7.1",
"git-cliff": "^2.12.0",
"minimist": "^1.2.8",
"rcedit": "^5.0.2",
"react": "^19.2.5",
"react-dom": "^19.0.0",
"rspress": "^1.47.1",
"semver": "^7.7.4",
"smol-toml": "^1.6.1",
"typescript": "^6.0.2"
},
"devDependencies": {
"@actions/core": "^3.0.1",
"@biomejs/biome": "^2.3.13",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@commitlint/types": "^20.5.0",
"@modern-js/tsconfig": "3.1.5",
"@rspress/plugin-shiki": "^1.47.1",
"@types/node": "^25.5.0",
"chatgpt-md-translator": "^1.9.1",
"lint-staged": "^16.4.0",
"simple-git-hooks": "^2.13.1",
"ts-results": "^3.3.0",
"tsx": "^4.21.0"
},
"optionalDependencies": {
"git-cliff-darwin-arm64": "^2.7.0",
"git-cliff-darwin-x64": "^2.13.1",
"git-cliff-linux-x64": "^2.7.0",
"git-cliff-windows-arm64": "^2.7.0",
"git-cliff-windows-x64": "^2.12.0"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "npx --no -- commitlint --edit $1"
},
"packageManager": "pnpm@10.32.1",
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"core-js",
"esbuild",
"simple-git-hooks"
]
}
}