forked from Dimillian/CodexMonitor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 3 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 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
73
74
75
76
{
"name": "codex-monitor",
"private": true,
"version": "0.7.57",
"type": "module",
"scripts": {
"sync:material-icons": "node scripts/sync-material-icons.mjs",
"postinstall": "npm run sync:material-icons",
"predev": "npm run sync:material-icons",
"dev": "vite",
"prebuild": "npm run sync:material-icons",
"build": "tsc && vite build",
"build:appimage": "NO_STRIP=1 tauri build --bundles appimage",
"doctor": "sh scripts/doctor.sh",
"doctor:strict": "sh scripts/doctor.sh --strict",
"doctor:win": "node scripts/doctor.mjs --strict",
"lint": "eslint . --ext .ts,.tsx",
"lint:ds": "eslint . --ext .ts,.tsx",
"codemod:modal-shell": "node scripts/codemods/modal-shell-codemod.mjs",
"codemod:panel-shell": "node scripts/codemods/panel-shell-codemod.mjs",
"codemod:toast-shell": "node scripts/codemods/toast-shell-codemod.mjs",
"codemod:ds:dry": "npm run codemod:modal-shell -- --dry-run && npm run codemod:panel-shell -- --dry-run && npm run codemod:toast-shell -- --dry-run",
"codemod:ds": "npm run codemod:modal-shell && npm run codemod:panel-shell && npm run codemod:toast-shell",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"preview": "vite preview",
"tauri": "tauri",
"pretauri:dev": "npm run sync:material-icons",
"tauri:dev": "npm run doctor:strict && tauri dev",
"pretauri:build": "npm run sync:material-icons",
"tauri:build": "npm run doctor:strict && tauri build",
"pretauri:dev:win": "npm run sync:material-icons",
"tauri:dev:win": "npm run doctor:win && tauri dev --config src-tauri/tauri.windows.conf.json",
"pretauri:build:win": "npm run sync:material-icons",
"tauri:build:win": "npm run doctor:win && tauri build --config src-tauri/tauri.windows.conf.json"
},
"dependencies": {
"@pierre/diffs": "^1.0.6",
"@sentry/react": "^10.36.0",
"@tanstack/react-virtual": "^3.13.18",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-notification": "^2.3.3",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-updater": "^2.9.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/xterm": "^5.5.0",
"lucide-react": "^0.562.0",
"prismjs": "^1.30.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"tauri-plugin-liquid-glass-api": "^0.1.6",
"vscode-material-icons": "^0.1.1"
},
"devDependencies": {
"@tauri-apps/cli": "^2.9.6",
"@testing-library/react": "^16.3.2",
"@types/prismjs": "^1.26.5",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react": "^4.6.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-react-hooks": "^4.6.2",
"jsdom": "^27.0.1",
"typescript": "~5.8.3",
"vite": "^7.0.4",
"vitest": "^3.2.4"
}
}