blockbench/package.json

74 lines
1.2 KiB
JSON
Raw Normal View History

2017-10-26 19:00:52 +02:00
{
2018-12-02 19:39:27 +01:00
"name": "Blockbench",
"description": "Minecraft Block Model Editor",
2018-12-29 12:26:02 +01:00
"version": "2.3.1",
2018-12-02 19:39:27 +01:00
"license": "MIT",
"author": {
"name": "JannisX11",
"email": "info@blockbench.net"
},
"repository": {
"type": "git",
"url": "https://github.com/JannisX11/blockbench"
},
"main": "main.js",
"build": {
"appId": "blockbench",
"productName": "Blockbench",
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": {
"artifactName": "${productName}_${version}.${ext}",
2018-12-02 19:39:27 +01:00
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"artifactName": "${productName}_${arch}_${version}.${ext}",
2018-12-02 19:39:27 +01:00
"target": "nsis"
},
"linux": {
"artifactName": "${productName}_${version}.${ext}",
2018-12-02 19:39:27 +01:00
"target": [
"deb"
],
"category": ""
}
},
"scripts": {
2019-01-02 14:15:43 +01:00
"dist": "build --publish=always",
"dist32": "build --ia32 --publish=always"
2018-12-02 19:39:27 +01:00
},
"devDependencies": {
"async": "^2.4.1",
2018-12-29 12:38:22 +01:00
"electron-builder": "^20.38.4"
2018-12-02 19:39:27 +01:00
}
2017-10-26 19:00:52 +02:00
}