-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.67 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.67 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
{
"name": "skeleton_studio",
"version": "1.0.0",
"description": "",
"main": "dist-electron/main.js",
"scripts": {
"dev": "concurrently -k \"vite\" \"npm run dev:electron\"",
"dev:vite": "vite",
"dev:electron": "tsc -p tsconfig.electron.json && sleep 3 && VITE_DEV_SERVER_URL=http://localhost:5173 electron dist-electron/main.js",
"build": "vite build && tsc -p tsconfig.electron.json && electron-builder"
},
"keywords": [],
"author": "",
"license": "ISC",
"build": {
"appId": "com.skeleton-studio.app",
"productName": "Skeleton Studio",
"mac": {
"icon": "build/icon.icns",
"category": "public.app-category.utilities"
},
"directories": {
"output": "release"
},
"extraResources": [
{
"from": "engine",
"to": "engine",
"filter": ["**/*", "!__pycache__/**", "!*.pyc"]
},
{
"from": "build",
"to": "build",
"filter": ["icon_1024.png"]
}
],
"files": [
"dist-electron/**/*",
"dist-renderer/**/*"
],
"asarUnpack": [
"dist-renderer/**/*"
]
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/utilities": "^3.2.2",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"ws": "^8.20.0",
"zustand": "^5.0.12"
},
"devDependencies": {
"@tailwindcss/vite": "^4.2.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^6.0.1",
"concurrently": "^9.2.1",
"electron": "^41.2.1",
"electron-builder": "^26.8.1",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.2",
"vite": "^8.0.8",
"wait-on": "^9.0.5"
}
}