-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.6 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
{
"name": "fluxion",
"version": "v0.13.1",
"description": "A flow based programming environment for javascript and nodejs.",
"dependencies": {
"chart.js": "^2.9.4",
"lodash": "^4.17.20",
"prettier": "^1.19.1",
"pug": "^2.0.4",
"vue": "^2.6.12",
"vue-chartjs": "^3.5.1",
"vue-clickaway": "^2.2.2",
"vue-codemirror": "^4.0.6"
},
"devDependencies": {
"@vue/component-compiler-utils": "^2.6.0",
"ajv": "^6.12.6",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"electron": "^7.3.3",
"electron-builder": "^20.44.4",
"parcel": "^1.12.4",
"vue-devtools": "^5.1.4",
"vue-template-compiler": "^2.6.12"
},
"main": "electron-starter.js",
"scripts": {
"start": "export $(cat .env | grep -v ^# | xargs); electron .",
"build": "rm -rf dist && parcel build public/index.html --target electron --no-minify --no-source-maps --public-url ./",
"watch": "parcel public/index.html --target electron --no-hmr --public-url ./",
"test": "echo no test",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"release": "yarn build && electron-builder --publish"
},
"build": {
"productName": "Fluxion",
"appId": "app.fluxion",
"mac": {
"category": "public.app-category.developer-tools"
},
"win": {
"target": "nsis"
},
"files": [
"*.js",
"src/modules/*",
"src/Menus/*",
"dist"
],
"fileAssociations": [
{
"ext": "fluxion",
"name": "Fluxion"
}
]
},
"author": "Kyle Parisi (http://blog.kyleparisi.com)",
"license": "Apache-2.0"
}