-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.11 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
{
"name": "stemkit",
"productName": "StemKit",
"version": "0.1.18",
"description": "Local YouTube stem splitter and player",
"main": "./out/main/index.js",
"author": "daniel",
"private": true,
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "node scripts/run.cjs dev",
"build": "node scripts/run.cjs build",
"typecheck:node": "node scripts/run.cjs typecheck:node",
"typecheck:web": "node scripts/run.cjs typecheck:web",
"typecheck": "node scripts/run.cjs typecheck",
"dist": "node scripts/run.cjs dist",
"dist:win": "node scripts/run.cjs dist:win",
"dist:all": "node scripts/run.cjs dist:all"
},
"dependencies": {
"electron-updater": "^6.8.9"
},
"devDependencies": {
"@tailwindcss/vite": "^4.0.6",
"@types/node": "^22.10.2",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"electron": "^33.3.1",
"electron-builder": "^25.1.8",
"electron-vite": "^2.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^4.0.6",
"typescript": "^5.7.2",
"vite": "^5.4.11"
}
}