-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.44 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
{
"name": "audiotoolbox",
"private": true,
"version": "0.0.0",
"type": "module",
"main": "main.js",
"scripts": {
"dev": "concurrently --kill-others \"cross-env NODE_ENV=development vite\" \"wait-on http://localhost:5173 && cross-env NODE_ENV=development electron .\"",
"build": "vite build",
"build:electron": "vite build && electron-builder",
"lint": "eslint .",
"preview": "vite preview",
"electron": "electron ."
},
"dependencies": {
"@ffmpeg/ffmpeg": "^0.12.10",
"bpm-detective": "^2.0.5",
"lucide-react": "^0.503.0",
"music-metadata": "^8.3.0",
"pitchfinder": "^2.3.2",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/react": "^19.0.0-rc.1",
"@types/react-dom": "^19.0.0-rc.1",
"@vitejs/plugin-react": "^4.3.4",
"concurrently": "^9.1.2",
"cross-env": "^7.0.3",
"electron": "^33.0.0",
"electron-builder": "^25.1.8",
"eslint": "^9.13.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.12",
"globals": "^15.11.0",
"sass": "^1.80.4",
"vite": "^6.3.1",
"wait-on": "^8.0.1"
},
"build": {
"appId": "com.audiotoolbox.app",
"productName": "AudioToolBox",
"files": [
"dist/**/*",
"main.js"
],
"win": {
"target": "nsis"
},
"mac": {
"target": "dmg"
},
"linux": {
"target": "AppImage"
}
}
}