-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
78 lines (78 loc) · 1.9 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "Servez",
"version": "1.12.2",
"description": "A Simple Webserver for Localdev with GUI",
"main": "main.js",
"build": {
"appId": "com.greggman.servez",
"asar": true,
"mac": {
"category": "public.app-category.developer-tools",
"gatekeeperAssess": false,
"hardenedRuntime": true,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"notarize": {
"teamId": "W22XQZGECM"
},
"target": [
{
"target": "dmg",
"arch": "universal"
},
{
"target": "dmg",
"arch": "arm64"
},
{
"target": "dmg",
"arch": "x64"
}
]
}
},
"scripts": {
"start": "cross-env NODE_ENV=development electron main.js",
"startp": "cross-env NODE_ENV=production electron main.js",
"lint": "echo \"TBD\"",
"build": "echo \"TBD\"",
"test": "echo \"TBD\"",
"publish": "electron-builder --publish always",
"pack": "electron-builder --dir",
"dist": "electron-builder --publish never"
},
"repository": {
"type": "git",
"url": "git+https://github.com/greggman/servez.git"
},
"keywords": [
"http",
"server",
"webserver",
"web"
],
"author": "Gregg Tavares",
"license": "MIT",
"bugs": {
"url": "https://github.com/greggman/servez/issues"
},
"homepage": "https://github.com/greggman/servez#readme",
"dependencies": {
"@electron/remote": "^2.1.2",
"ansi-colors": "^4.1.3",
"color-support": "^1.1.3",
"cors": "^2.8.5",
"debug": "^4.3.6",
"express": "^4.17.3",
"optionator": "^0.9.4",
"serve-index": "^1.9.1",
"server-destroy": "^1.0.1",
"servez-lib": "^2.9.4"
},
"devDependencies": {
"@electron/notarize": "^2.3.2",
"cross-env": "^7.0.3",
"electron": "^17.1.0",
"electron-builder": "^24.13.3"
}
}