-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.26 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.26 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
{
"name": "chaosengine-desktop",
"private": true,
"version": "0.7.4",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"release:macos": "node ./scripts/release-macos.mjs",
"stage:runtime": "node ./scripts/stage-runtime.mjs --mode=development",
"stage:runtime:release": "node ./scripts/stage-runtime.mjs --mode=release",
"test": "vitest run",
"preview": "vite preview",
"tauri:dev": "npm run stage:runtime && tauri dev",
"tauri:build": "tauri build"
},
"dependencies": {
"@tauri-apps/api": "~2.11.0",
"@tauri-apps/plugin-dialog": "^2.7.0",
"@tauri-apps/plugin-opener": "^2.5.3",
"@tauri-apps/plugin-process": "^2.0.0",
"@tauri-apps/plugin-updater": "^2.0.0",
"katex": "^0.16.45",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^15.6.6",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0"
},
"devDependencies": {
"@tauri-apps/cli": "~2.11.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitejs/plugin-react": "^5.1.0",
"typescript": "^5.6.3",
"vite": "^7.3.2",
"vitest": "^4.1.4"
}
}