blockbench/package.json

86 lines
1.6 KiB
JSON
Raw Permalink Normal View History

2017-10-26 19:00:52 +02:00
{
2018-12-02 19:39:27 +01:00
"name": "Blockbench",
2019-07-19 17:31:22 +02:00
"description": "Model editing and animation software",
2019-12-17 17:44:27 +01:00
"version": "3.2.1",
2018-12-02 19:39:27 +01:00
"license": "MIT",
"author": {
"name": "JannisX11",
"email": "info@blockbench.net"
},
2019-07-17 20:32:07 +02:00
"homepage": "https://blockbench.net",
2018-12-02 19:39:27 +01:00
"repository": {
"type": "git",
"url": "https://github.com/JannisX11/blockbench"
},
"main": "main.js",
"build": {
"appId": "blockbench",
"productName": "Blockbench",
2019-01-09 16:29:36 +01:00
"artifactName": "${productName}_${arch}_${version}.${ext}",
2018-12-02 19:39:27 +01:00
"mac": {
"category": "macOS.application",
"target": "dmg"
2018-12-02 19:39:27 +01:00
},
"files": [
"assets/",
"build/",
"css/",
"font/",
"js",
"lib",
"lang",
"main.js",
"index.html",
"package.json",
"favicon.png",
"icon.icns",
"icon.ico",
"icon.png"
],
"dmg": {
2019-01-09 16:29:36 +01:00
"artifactName": "${productName}_${version}.${ext}",
2019-01-02 17:08:58 +01:00
"backgroundColor": "#282c34",
"window": {
"x": 200,
"y": 100,
"width": 440,
2019-01-09 15:54:35 +01:00
"height": 220
2019-01-02 17:08:58 +01:00
},
2018-12-02 19:39:27 +01:00
"contents": [
{
"x": 130,
2019-01-02 17:08:58 +01:00
"y": 120
2018-12-02 19:39:27 +01:00
},
{
2019-01-02 17:08:58 +01:00
"x": 360,
"y": 120,
2018-12-02 19:39:27 +01:00
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"artifactName": "${productName}_${arch}_${version}.${ext}",
2019-12-15 20:05:51 +01:00
"target": "nsis"
2018-12-02 19:39:27 +01:00
},
"linux": {
"artifactName": "${productName}_${version}.${ext}",
2018-12-02 19:39:27 +01:00
"target": [
2019-07-17 18:02:07 +02:00
"deb",
"rpm"
2018-12-02 19:39:27 +01:00
],
2019-01-02 17:08:58 +01:00
"category": "3DGraphics"
2018-12-02 19:39:27 +01:00
}
},
"scripts": {
2019-07-19 17:35:55 +02:00
"dist": "electron-builder --publish=always",
"win64": "electron-builder -w --ia32 --publish=always",
"win32": "electron-builder -w --x64 --publish=always"
2018-12-02 19:39:27 +01:00
},
"devDependencies": {
"async": "^2.4.1",
2019-12-15 20:04:31 +01:00
"electron": "6.1.4",
2019-08-01 11:07:33 +02:00
"electron-builder": "^21.2.0"
2018-12-02 19:39:27 +01:00
}
2017-10-26 19:00:52 +02:00
}