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",
|
2020-04-29 23:35:47 +02:00
|
|
|
"version": "3.5.2",
|
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",
|
2019-01-02 15:04:45 +01:00
|
|
|
"productName": "Blockbench",
|
2019-01-09 16:29:36 +01:00
|
|
|
"artifactName": "${productName}_${arch}_${version}.${ext}",
|
2018-12-02 19:39:27 +01:00
|
|
|
"mac": {
|
2019-01-02 15:04:45 +01:00
|
|
|
"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": {
|
2019-01-02 15:04:45 +01:00
|
|
|
"artifactName": "${productName}_${arch}_${version}.${ext}",
|
2020-01-23 18:53:36 +01:00
|
|
|
"target": "nsis"
|
2018-12-02 19:39:27 +01:00
|
|
|
},
|
|
|
|
"linux": {
|
2019-01-02 15:04:45 +01:00
|
|
|
"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": {
|
2020-04-25 20:25:07 +02:00
|
|
|
"dev": "electron .",
|
2019-07-19 17:35:55 +02:00
|
|
|
"dist": "electron-builder --publish=always",
|
|
|
|
"win64": "electron-builder -w --ia32 --publish=always",
|
2020-01-23 18:53:36 +01:00
|
|
|
"win32": "electron-builder -w --x64 --publish=always",
|
|
|
|
"beta": "electron-builder --windows portable"
|
2018-12-02 19:39:27 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-04-25 20:25:07 +02:00
|
|
|
"electron": "8.2.1",
|
2020-03-04 21:06:02 +01:00
|
|
|
"electron-builder": "^21.2.0"
|
2018-12-02 19:39:27 +01:00
|
|
|
}
|
2017-10-26 19:00:52 +02:00
|
|
|
}
|