-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.19 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
{
"name": "@hap-server/electron-app",
"version": "0.1.0",
"description": "",
"keywords": [
"homekit",
"apple-homekit",
"iot",
"hap",
"hap-nodejs"
],
"license": "MIT",
"author": {
"name": "Samuel Elliott",
"url": "https://samuelthomas2774.github.io"
},
"main": "dist/app/index.js",
"repository": {
"type": "git",
"url": "https://gitlab.fancy.org.uk/hap-server/electron-app.git"
},
"private": true,
"engines": {
"node": ">=8.0.0 <12"
},
"dependencies": {
"@hap-server/hap-server": "^0.9.1",
"electron": "^6.0.12",
"electron-window-state": "^5.0.3",
"node-persist": "^3.0.5",
"ws": "^6.2.1"
},
"devDependencies": {
"electron-installer-debian": "^2.0.1",
"electron-packager": "^14.0.6",
"typescript": "^3.6.4",
"vue": "^2.6.10"
},
"scripts": {
"build": "tsc",
"start": "electron dist/app",
"interactive": "electron --interactive --require ./dist/app"
},
"files": [
"dist",
"assets"
],
"publishConfig": {
"access": "public"
}
}