-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 959 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 959 Bytes
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
{
"name": "musical-groove",
"private": true,
"version": "1.0.0",
"type": "module",
"main": "electron/main.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run",
"typecheck": "tsc -p jsconfig.json --noEmit",
"nowplaying:fix": "killall QuickLookUIService 2>/dev/null || true",
"build:native": "node-gyp rebuild --runtime=electron --target=$(node -p \"require('electron/package.json').version\") --dist-url=https://electronjs.org/headers --arch=arm64",
"electron:dev": "npm run build:native && npm run build && electron .",
"dist:mac": "npm run build:native && npm run build && electron-builder --mac --publish never"
},
"devDependencies": {
"electron": "^42.5.0",
"electron-builder": "^26.15.3",
"node-gyp": "^13.0.0",
"typescript": "^6.0.3",
"vite": "^5.4.0",
"vitest": "^2.1.0"
},
"dependencies": {
"three": "^0.169.0"
}
}