blockbench/package.json

106 lines
2.0 KiB
JSON
Raw 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",
2020-11-09 08:57:22 +01:00
"version": "3.7.4",
2020-07-16 09:32:59 +02:00
"license": "GPL-3.0-or-later",
2018-12-02 19:39:27 +01:00
"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": {
2020-07-16 09:32:59 +02:00
"afterSign": "scripts/notarize.js",
2018-12-02 19:39:27 +01:00
"appId": "blockbench",
"productName": "Blockbench",
2019-01-09 16:29:36 +01:00
"artifactName": "${productName}_${arch}_${version}.${ext}",
2020-07-16 09:32:59 +02:00
"publish": [
{
"provider": "github"
}
],
2018-12-02 19:39:27 +01:00
"mac": {
"category": "macOS.application",
2020-07-16 09:32:59 +02:00
"hardenedRuntime": true,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist"
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
"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}",
2020-01-23 18:53:36 +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",
2020-05-31 15:54:04 +02:00
"rpm",
"appImage"
2018-12-02 19:39:27 +01:00
],
2019-01-02 17:08:58 +01:00
"category": "3DGraphics"
2020-07-16 09:32:59 +02:00
},
"fileAssociations": [
{
"ext": "bbmodel",
"name": "Blockbench Project",
"role": "Editor"
}
]
2018-12-02 19:39:27 +01:00
},
"scripts": {
2020-04-25 20:25:07 +02:00
"dev": "electron .",
2020-07-16 09:32:59 +02:00
"dist": "electron-builder",
2020-07-16 21:50:08 +02:00
"beta": "electron-builder --windows portable",
"webapp": "git checkout gh-pages && git merge master && git push && git checkout master"
2018-12-02 19:39:27 +01:00
},
"devDependencies": {
2020-12-05 14:12:37 +01:00
"@types/jquery": "^3.5.4",
2020-10-06 21:27:06 +02:00
"electron": "^8.5.2",
2020-10-18 09:14:08 +02:00
"electron-builder": "^22.9.1",
2020-07-16 09:32:59 +02:00
"electron-notarize": "^1.0.0"
},
"dependencies": {
"electron-updater": "^4.3.1"
2018-12-02 19:39:27 +01:00
}
2017-10-26 19:00:52 +02:00
}