-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 974 Bytes
/
package.json
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": "soundsculpt",
"version": "1.0.0",
"description": "PC software to calibrate speakers by utilising a smartphone.",
"main": "main.js",
"scripts": {
"start": "electron main.js",
"test": "jest",
"package": "electron-builder --win --x64",
"build": "electron-builder"
},
"icon": "resources/images/SoundSulptIcon.png",
"keywords": [],
"author": "CS31",
"license": "ISC",
"devDependencies": {
"electron": "^28.1.4",
"electron-builder": "^24.13.3",
"electron-packager": "^17.1.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0"
},
"dependencies": {
"d3": "^7.8.5",
"eslint": "^8.57.0",
"firebase": "^10.9.0",
"text-encoding": "^0.7.0"
},
"build": {
"appId": "com.CS31.SoundSculpt",
"win": {
"target": "nsis",
"icon": "resources/images/soundSculptIcon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
}
}