-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.42 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
{
"name": "battleframe-desktop",
"private": true,
"version": "1.0.0",
"description": "Unofficial desktop shell for Pokemon Showdown",
"type": "module",
"scripts": {
"postinstall": "npm run showdown:install && npm run showdex:install && npm run showdex:build",
"dev": "npm run showdown:prepare && vite",
"build": "npm run showdown:prepare && tsc && vite build",
"preview": "vite preview",
"tauri": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/run-tauri.ps1",
"showdown:install": "npm --prefix vendor/pokemon-showdown-client ci",
"showdown:build": "node scripts/build-showdown.mjs",
"showdown:sync": "node scripts/sync-showdown.mjs",
"showdown:update": "node scripts/build-showdown.mjs full && npm run showdown:sync",
"showdown:prepare": "npm run showdown:sync",
"showdex:install": "node scripts/install-showdex.mjs",
"showdex:build": "node scripts/build-showdex.mjs"
},
"dependencies": {
"@fontsource/ibm-plex-sans": "^5.2.6",
"@fontsource/space-grotesk": "^5.2.7",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-window-state": "^2",
"zustand": "^5.0.8"
},
"devDependencies": {
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"typescript": "~5.8.3",
"vite": "^7.0.4",
"@tauri-apps/cli": "^2"
}
}