-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 4.62 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 4.62 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
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "cheersai-vault",
"private": true,
"version": "0.1.41",
"license": "Apache-2.0",
"homepage": "https://github.com/fyp1984/CheersAI-Vault",
"repository": {
"type": "git",
"url": "https://github.com/fyp1984/CheersAI-Vault.git"
},
"type": "module",
"scripts": {
"dev": "vite",
"sim:lab:start": "node scripts/sim-lab/index.mjs --client browser-dev",
"sim:lab:start:preview": "node scripts/sim-lab/index.mjs --client browser-preview",
"sim:lab:start:tauri": "node scripts/sim-lab/index.mjs --client tauri-dev",
"sim:lab:validate": "node scripts/sim-lab/validate.mjs",
"version:sync": "node scripts/version-manager.js sync",
"version:check": "node scripts/version-manager.js check",
"version:prepare": "node scripts/version-manager.js prepare",
"version:set": "node scripts/version-manager.js set",
"version:publish-manifest": "node scripts/publish-update-manifest.js",
"build": "node scripts/version-manager.js prepare && tsc && vite build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:unit": "tsx --test src/lib/runtime/errorClassification.test.ts src/lib/runtime/host.test.ts src/lib/runtime/downloadName.test.ts src/lib/versionPolicy.test.ts src/lib/versionService.test.ts src/store/ruleStore.test.ts src/components/file/maskingPreviewManualReplace.test.ts",
"test:unit:compat": "corepack pnpm test:unit && corepack pnpm test",
"test:e2e": "playwright test --project=chromium",
"test:e2e:headed": "playwright test --headed",
"test:compat": "playwright test --project=chromium --project=webkit",
"test:stability": "node scripts/run-client-soak.mjs",
"test:sdlc-report": "node ./scripts/generate-sdlc-test-report.mjs",
"test:all": "node scripts/run-client-test-matrix.mjs",
"prepare": "husky || true",
"commitlint": "commitlint --edit",
"preview": "vite preview",
"tauri": "tauri",
"build:dmg:portable": "bash ./scripts/build-macos-portable-dmg.sh",
"version:patch": "node scripts/bump-version.js patch",
"version:minor": "node scripts/bump-version.js minor",
"version:major": "node scripts/bump-version.js major",
"build:windows": "pnpm tauri build --bundles nsis,msi",
"build:linux": "pnpm tauri build --bundles appimage,deb,rpm",
"release": "node scripts/bump-version.js patch && pnpm tauri build"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2.7.0",
"@tauri-apps/plugin-fs": "^2.5.0",
"@tauri-apps/plugin-opener": "^2.5.3",
"@tauri-apps/plugin-shell": "^2.3.5",
"@tauri-apps/plugin-updater": "^2.10.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.577.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-dropzone": "^15.0.0",
"react-router-dom": "^7.13.1",
"tailwind-merge": "^3.5.0",
"uuid": "^13.0.0",
"zustand": "^5.0.11"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.55.1",
"@tauri-apps/cli": "^2",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.5.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/uuid": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^8.67.0",
"@typescript-eslint/parser": "^8.67.0",
"@vitejs/plugin-react": "^4.6.0",
"autoprefixer": "^10.4.27",
"eslint": "^9.39.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.4",
"globals": "^17.11.0",
"husky": "^9.1.7",
"jsdom": "^30.0.1",
"postcss": "^8.5.8",
"tailwindcss": "^3.4.19",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.20.5",
"typescript": "~5.8.3",
"typescript-eslint": "^8.67.0",
"vite": "^7.0.4",
"vitest": "^4.1.10"
},
"packageManager": "pnpm@11.17.0+sha512.cca3cea332ad254bb84145f966d19f4879615210346fc92c79a047f23a0d7b3cca3c3792f0076ba1f1831d277efbcf0a9119b31a9a60eca7fb3d6231f331ef72"
}