-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
68 lines (68 loc) · 2.38 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
{
"name": "ept",
"version": "0.2.3",
"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": "eslint --fix 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.6.1",
"minimist": "^1.2.8",
"rcedit": "^4.0.1",
"react": "^18.3.1",
"rspress": "^1.36.0",
"semver": "^7.6.3",
"smol-toml": "^1.3.0",
"typescript": "^5.6.3"
},
"devDependencies": {
"@actions/core": "^1.11.1",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/types": "^19.5.0",
"@eslint/js": "^9.13.0",
"@modern-js/tsconfig": "2.61.0",
"@rspress/plugin-shiki": "^1.31.1",
"@types/node": "^22.8.1",
"chatgpt-md-translator": "^1.7.1",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.11.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"simple-git-hooks": "^2.11.1",
"ts-results": "^3.3.0",
"tsx": "^4.19.2",
"typescript-eslint": "^8.13.0"
},
"optionalDependencies": {
"git-cliff-darwin-arm64": "^2.6.1",
"git-cliff-darwin-x64": "^2.6.1",
"git-cliff-linux-x64": "^2.6.1",
"git-cliff-windows-arm64": "^2.6.1",
"git-cliff-windows-x64": "^2.6.1"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "npx --no -- commitlint --edit $1"
},
"packageManager": "[email protected]"
}