-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 4.92 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 4.92 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "bbcom",
"private": true,
"version": "1.2.0",
"type": "module",
"packageManager": "pnpm@11.11.0",
"engines": {
"node": "24.13.0",
"pnpm": "11.11.0"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "24.13.0",
"onFail": "download"
}
},
"scripts": {
"prepare": "pnpm run hooks:install",
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"bundle:check": "node scripts/check-bundle-size.mjs",
"preview": "vite preview",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"tauri:before-dev": "vite",
"tauri:prepare": "pnpm run build",
"hooks:install": "node scripts/install-git-hooks.mjs",
"toolchain:check": "node scripts/check-local-toolchain.mjs",
"lint": "eslint src/ tests/ scripts/ vite.config.ts vitest.config.ts wdio.browser-mock.config.mjs wdio.native.config.mjs eslint.config.mjs",
"lint:markdown": "markdownlint-cli2 \"**/*.md\" \"#node_modules\" \"#dist\"",
"lint:shell": "shellcheck scripts/dev.sh .githooks/pre-commit .githooks/pre-push",
"format": "prettier --write src/ tests/ scripts/ README.md README.zh-CN.md ARCHITECTURE.md CHANGELOG.md CONTRIBUTING.md SECURITY.md package.json pnpm-workspace.yaml .markdownlint-cli2.yaml vite.config.ts vitest.config.ts wdio.browser-mock.config.mjs wdio.native.config.mjs eslint.config.mjs tsconfig.json tsconfig.node.json tsconfig.eslint.json index.html .github/workflows/ && cargo fmt --manifest-path src-tauri/Cargo.toml",
"format:check": "prettier --check src/ tests/ scripts/ README.md README.zh-CN.md ARCHITECTURE.md CHANGELOG.md CONTRIBUTING.md SECURITY.md package.json pnpm-workspace.yaml .markdownlint-cli2.yaml vite.config.ts vitest.config.ts wdio.browser-mock.config.mjs wdio.native.config.mjs eslint.config.mjs tsconfig.json tsconfig.node.json tsconfig.eslint.json index.html .github/workflows/ && cargo fmt --manifest-path src-tauri/Cargo.toml -- --check",
"test:frontend": "vitest run",
"test:rust": "cargo test --manifest-path src-tauri/Cargo.toml --locked --workspace",
"e2e:browser": "wdio run wdio.browser-mock.config.mjs",
"e2e:native": "wdio run wdio.native.config.mjs",
"test": "pnpm run test:frontend && pnpm run test:rust",
"cycles": "node scripts/check-architecture.mjs",
"architecture": "node scripts/check-architecture.mjs",
"architecture:selftest": "node scripts/check-architecture.mjs --self-test",
"tokens:check": "node scripts/check-css-tokens.mjs",
"e2e:browser:local": "node scripts/run-browser-mock-e2e.mjs",
"quality:frontend": "pnpm run lint && pnpm run lint:markdown && pnpm run lint:shell && pnpm run format:check && pnpm run architecture && pnpm run build",
"quality:rust": "cargo run -p xtask --locked -- bindings --check && cargo fmt --manifest-path src-tauri/Cargo.toml -- --check && cargo clippy --manifest-path src-tauri/Cargo.toml --workspace --all-targets --all-features --locked -- -D warnings",
"precommit": "pnpm run toolchain:check && pnpm run lint && pnpm run lint:markdown && pnpm run lint:shell && pnpm run format:check && pnpm run architecture && pnpm run build",
"precommit:full": "pnpm run precommit && pnpm run test:frontend && pnpm run test:rust && pnpm run e2e:browser:local",
"test:local": "pnpm run test:frontend && pnpm run test:rust",
"test:local:full": "pnpm run test:local && pnpm run e2e:browser:local",
"check": "pnpm run lint && pnpm run lint:markdown && pnpm run lint:shell && pnpm run format:check && pnpm run architecture && pnpm run build && pnpm run test",
"version:sync": "node scripts/set-version.mjs",
"version:check": "node scripts/check-version.mjs"
},
"dependencies": {
"@lucide/vue": "1.24.0",
"@tanstack/vue-virtual": "3.13.31",
"@tauri-apps/api": "2.11.1",
"@tauri-apps/plugin-opener": "2.5.4",
"@xterm/addon-fit": "0.10.0",
"@xterm/addon-search": "0.15.0",
"@xterm/xterm": "5.5.0",
"ansi_up": "6.0.6",
"cborg": "6.1.1",
"naive-ui": "2.44.1",
"pinia": "3.0.4",
"tauri-plugin-serialplugin-api": "3.0.0",
"vue": "3.5.39"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@tauri-apps/cli": "2.11.4",
"@types/node": "24.13.3",
"@vitejs/plugin-vue": "6.0.7",
"@vitest/coverage-v8": "4.1.10",
"@vue/test-utils": "2.4.11",
"@wdio/cli": "9.29.1",
"@wdio/globals": "9.29.1",
"@wdio/jasmine-framework": "9.29.1",
"@wdio/local-runner": "9.29.1",
"@wdio/spec-reporter": "9.29.1",
"@wdio/tauri-service": "1.2.0",
"axe-core": "4.12.1",
"eslint": "10.6.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-vue": "10.9.2",
"globals": "17.7.0",
"happy-dom": "20.10.6",
"markdownlint-cli2": "0.23.0",
"prettier": "3.9.5",
"rollup-plugin-visualizer": "7.0.1",
"typescript": "6.0.3",
"typescript-eslint": "8.63.0",
"vite": "8.1.4",
"vitest": "4.1.10",
"vue-eslint-parser": "10.4.1",
"vue-tsc": "3.3.7",
"webdriverio": "9.29.1"
}
}