-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.57 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
{
"name": "isotile",
"productName": "Isotile",
"description": "Quickly generate tiles for your next game from sprites or solid colors.",
"version": "1.0.0",
"main": "electron-entry.js",
"homepage": "https://isotile.ash.ms/",
"scripts": {
"start": "parcel src/index.html",
"build": "npm run build:web && npm run build:app",
"build:web": "parcel build web/index.html",
"build:app": "parcel build --no-minify src/index.html -d dist/app/ --public-url=/app/",
"build:electron": "bash electron/build-electron.sh",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": {
"name": "Ash Kyd",
"email": "[email protected]",
"url": "http://ash.ms/"
},
"license": "ISC",
"dependencies": {
"image-brightness": "0.0.10",
"image-filter-core": "^2.0.2",
"kewler": "^1.0.8",
"materialize-css": "^1.0.0",
"save-file": "^2.1.1",
"throttle-debounce": "^2.0.1",
"vue": "^2.5.17",
"vue-hot-reload-api": "^2.3.1"
},
"devDependencies": {
"@vue/component-compiler-utils": "^2.3.0",
"electron-builder": "^20.28.4",
"parcel-bundler": "^1.10.3",
"sass": "^1.15.1",
"vue-template-compiler": "^2.5.17"
},
"build": {
"appId": "kyd.isotile",
"copyright": "Copyright © ${author} 2018",
"mac": {
"category": "public.app-category.graphics-design",
"target": "dmg"
},
"win": {
"target": "nsis"
},
"linux": {
"category": "Graphics",
"target": [
{
"target": "deb"
},
{
"target": "rpm"
}
]
}
}
}