-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.76 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.76 KB
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
{
"name": "pyro",
"version": "0.3.0",
"description": "Elegant hardware data Burning tool",
"private": true,
"main": "src",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"dev": "electron-webpack dev",
"compile": "electron-webpack",
"dist": "npm run compile && electron-builder",
"dist:dir": "npm run dist --dir -c.compression=store -c.mac.identity=null",
"dist:retry:win": "npm run compile && electron-builder --prepackaged ./dist/win-unpacked"
},
"repository": {
"type": "git",
"url": "[email protected]:imyelo/pyro.git"
},
"author": "yelo",
"license": "MIT",
"dependencies": {
"axios": "^0.18.0",
"bluebird": "^3.5.1",
"csv": "^2.0.0",
"electron-is": "^2.4.0",
"electron-store": "^1.3.0",
"eventemitter3": "^3.0.1",
"fs-extra": "^5.0.0",
"keymirror": "^0.1.1",
"lodash": "^4.17.5",
"prismjs": "^1.13.0",
"serialport": "^6.1.1",
"source-map-support": "^0.5.4",
"vue-prism-component": "^1.0.1",
"vue-router": "^3.0.1",
"vuex": "^3.0.1",
"vuex-persistedstate": "^2.5.1"
},
"devDependencies": {
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"electron": "^1.8.4",
"electron-builder": "^20.8.1",
"electron-rebuild": "^1.7.3",
"electron-webpack": "^1.13.0",
"electron-webpack-vue": "^2.1.0",
"less": "^3.0.1",
"less-loader": "^4.1.0",
"raw-loader": "^0.5.1",
"vue": "^2.5.16",
"webpack": "^3.11.0"
},
"build": {
"appId": "xyz.sodalife.pyro",
"win": {
"target": "portable",
"icon": "build/icon.png"
},
"directories": {
"buildResources": "build"
},
"files": [
"**/*",
"build/icon.*"
]
}
}