-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.39 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "homestudio-remote",
"version": "1.11.1",
"description": "Homestudio for on-site production",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"build": "electron-builder --win"
},
"build": {
"appId": "com.xeue.homestudio",
"productName": "Home Studio",
"files": [
"**/*",
"static/*"
],
"win": {
"icon": "static/img/icon/icon.ico",
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"requestedExecutionLevel": "requireAdministrator"
},
"nsis": {
"artifactName": "HomeStudio-v${version}.exe"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Xeue/HomeStudio-Remote.git"
},
"author": "Sam Chilton",
"license": "MIT",
"bugs": {
"url": "https://github.com/Xeue/HomeStudio-Remote/issues"
},
"homepage": "https://github.com/Xeue/HomeStudio-Remote#readme",
"dependencies": {
"auto-launch": "^5.0.6",
"ejs": "^3.1.9",
"ejs-electron": "^2.1.1",
"express": "^4.18.2",
"mica-electron": "^1.5.1",
"node-fetch": "^2.6.7",
"xeue-config": "^2.1.0",
"xeue-logs": "^2.0.0",
"xeue-shell": "^1.2.0",
"xeue-webserver": "^2.0.0"
},
"devDependencies": {
"electron": "^26.1.0",
"electron-builder": "^24.6.3"
}
}