-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.32 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.32 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": "flint",
"version": "1.8.6",
"description": "League of Legends Modding IDE",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"tauri": "tauri",
"sync-version": "node scripts/sync-version.js",
"version:patch": "npm version patch --no-git-tag-version && npm run sync-version",
"version:minor": "npm version minor --no-git-tag-version && npm run sync-version",
"version:major": "npm version major --no-git-tag-version && npm run sync-version",
"release": "node scripts/release.js"
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"@react-three/drei": "9.117",
"@react-three/fiber": "^8.18.0",
"@tauri-apps/api": "^2.0.0",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-opener": "^2.5.3",
"@tauri-apps/plugin-process": "^2.0.0",
"@tauri-apps/plugin-updater": "^2.0.0",
"@types/react-window": "^1.8.8",
"@types/three": "^0.182.0",
"monaco-editor": "^0.55.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-window": "^2.2.3",
"three": "^0.182.0",
"zustand": "^5.0.11"
},
"devDependencies": {
"@tauri-apps/cli": "^2.0.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"typescript": "^5.6.3",
"vite": "^5.0.0"
}
}