forked from STRML/nikola
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
102 lines (102 loc) · 2.76 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "Nikola",
"version": "0.3.5",
"description": "Open source and unoffocial cross-platform desktop app to control tesla vehicles",
"author": "Geraldo Ramos <email@lunars.com> (https://lunars.com)",
"homepage": "https://github.com/lunars/nikola",
"repository": {
"type": "git",
"url": "https://github.com/lunars/nikola.git"
},
"build": {
"generateUpdatesFilesForAllChannels": true,
"directories": {
"output": "packaged"
},
"publish": [
{
"provider": "github",
"owner": "lunars",
"repo": "nikola"
}
],
"appId": "com.github.lunars.nikola",
"mac": {
"category": "public.app-category.utilities",
"icon": "icons/icon.icns",
"publish": [
"github"
],
"target": [
"dmg",
"zip"
]
},
"dmg": {
"background": "icons/background.png"
},
"win": {
"target": "NSIS",
"icon": "icons/icon.ico",
"publish": [
"github"
]
},
"linux": {
"target": [
"AppImage",
"deb",
"zip"
],
"publish": [
"github"
]
}
},
"license": "MIT",
"main": "main.js",
"scripts": {
"prod": "webpack --config webpack.build.config.js && electron --noDevServer .",
"dev": "webpack-dev-server --hot --host 0.0.0.0 --config=./webpack.dev.config.js",
"build-ui": "webpack --config webpack.build.config.js",
"build": "yarn build-ui && electron-builder -w -m -l",
"publish": "yarn build-ui && electron-builder -m -w -l -p always"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-object-rest-spread": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"@fortawesome/fontawesome-svg-core": "^1.2.18",
"@fortawesome/free-solid-svg-icons": "^5.8.2",
"@fortawesome/react-fontawesome": "^0.1.4",
"babel-loader": "^8.0.6",
"babili-webpack-plugin": "^0.1.2",
"css-loader": "^3.4.0",
"electron": "^7.1.7",
"electron-builder": "^21.2.0",
"electron-packager": "^14.1.1",
"extract-text-webpack-plugin": "v4.0.0-alpha.0",
"file-loader": "^5.0.2",
"html-webpack-plugin": "^3.2.0",
"js-yaml": ">=3.13.1",
"react": "^16.8.6",
"react-dom": "^16.0.0",
"style-loader": "^1.1.1",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.6.0"
},
"dependencies": {
"antd": "^3.19.2",
"electron-context-menu": "^0.15.1",
"electron-is-dev": "^1.1.0",
"electron-log": "^4.0.1",
"electron-positioner": "^4.1.0",
"electron-store": "^5.1.0",
"electron-updater": "^4.0.6",
"google-maps-react": "^2.0.2",
"react-tooltip": "^3.10.0",
"teslajs": "https://github.com/Lunars/TeslaJS/tarball/master?v=2"
}
}