-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
82 lines (82 loc) · 1.79 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
79
80
81
82
{
"name": "teslacam-browser",
"productName": "TeslaCam Browser",
"version": "0.0.956",
"description": "A minimal TeslaCam Browser",
"main": "main.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"release": "electron-builder build",
"publish": "electron-builder build --mac --win --linux -p always"
},
"repository": "https://github.com/BobStrogg/teslacam-browser",
"keywords": [
"Electron",
"Tesla",
"TeslaCam",
"browser"
],
"author": "Chris Cavanagh <teslacam@chriscavanagh.com>",
"license": "CC0-1.0",
"build": {
"appId": "cjc-teslacam-browser",
"publish": [
{
"provider": "github",
"owner": "bobstrogg",
"repo": "teslacam-browser"
}
],
"mac": {
"publish": [
"github"
],
"icon": "build/icons/icon.icns",
"target": [
"pkg",
"zip"
]
},
"linux": {
"publish": [
"github"
],
"target": [
"AppImage",
"deb"
]
},
"win": {
"publish": [
"github"
],
"target": "NSIS",
"icon": "build/icon.ico"
}
},
"devDependencies": {
"@popperjs/core": "^2.1.0",
"bootstrap-vue": "^2.6.1",
"electron": "^9.4.0",
"electron-builder": "^22.4.0",
"mime": "^2.4.4"
},
"dependencies": {
"bootstrap": "^4.4.1",
"buffer-alloc-unsafe": "^1.1.0",
"electron-settings": "^3.2.0",
"electron-updater": "^4.2.4",
"express": "^4.17.1",
"flatpickr": "^4.6.3",
"jquery": "^3.3.1",
"open-iconic": "^1.1.1",
"popper.js": "^1.16.1",
"rimraf": "^3.0.2",
"serve-index": "^1.9.1",
"vue": "^2.6.11",
"yarn": "^1.22.4"
},
"postinstall": "electron-builder install-app-deps"
}