blockbench/package.json

111 lines
2.2 KiB
JSON
Raw Normal View History

2017-10-27 01:00:52 +08:00
{
2018-12-03 02:39:27 +08:00
"name": "Blockbench",
2019-07-19 23:31:22 +08:00
"description": "Model editing and animation software",
2021-03-22 02:37:34 +08:00
"version": "3.8.3",
2020-07-16 15:32:59 +08:00
"license": "GPL-3.0-or-later",
2018-12-03 02:39:27 +08:00
"author": {
"name": "JannisX11",
"email": "info@blockbench.net"
},
2019-07-18 02:32:07 +08:00
"homepage": "https://blockbench.net",
2018-12-03 02:39:27 +08:00
"repository": {
"type": "git",
"url": "https://github.com/JannisX11/blockbench"
},
"main": "main.js",
"build": {
2020-07-16 15:32:59 +08:00
"afterSign": "scripts/notarize.js",
2018-12-03 02:39:27 +08:00
"appId": "blockbench",
"productName": "Blockbench",
2019-01-09 23:29:36 +08:00
"artifactName": "${productName}_${arch}_${version}.${ext}",
2020-07-16 15:32:59 +08:00
"publish": [
{
"provider": "github"
}
],
2018-12-03 02:39:27 +08:00
"mac": {
"category": "macOS.application",
2020-07-16 15:32:59 +08:00
"hardenedRuntime": true,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist"
2018-12-03 02:39:27 +08:00
},
"files": [
"assets/",
"build/",
"css/",
2021-02-10 05:26:52 +08:00
"js/",
"lib/",
"font/",
2018-12-03 02:39:27 +08:00
"main.js",
"index.html",
"package.json",
"favicon.png",
"icon.icns",
"icon.ico",
"icon.png"
],
"dmg": {
2019-01-09 23:29:36 +08:00
"artifactName": "${productName}_${version}.${ext}",
2019-01-03 00:08:58 +08:00
"window": {
"x": 200,
"y": 100,
"width": 440,
2019-01-09 22:54:35 +08:00
"height": 220
2019-01-03 00:08:58 +08:00
},
2018-12-03 02:39:27 +08:00
"contents": [
{
"x": 130,
2019-01-03 00:08:58 +08:00
"y": 120
2018-12-03 02:39:27 +08:00
},
{
2019-01-03 00:08:58 +08:00
"x": 360,
"y": 120,
2018-12-03 02:39:27 +08:00
"type": "link",
"path": "/Applications"
}
]
},
"win": {
2020-01-24 01:53:36 +08:00
"target": "nsis"
2018-12-03 02:39:27 +08:00
},
"linux": {
"artifactName": "${productName}_${version}.${ext}",
2018-12-03 02:39:27 +08:00
"target": [
2019-07-18 00:02:07 +08:00
"deb",
2020-05-31 21:54:04 +08:00
"rpm",
"appImage"
2018-12-03 02:39:27 +08:00
],
2019-01-03 00:08:58 +08:00
"category": "3DGraphics"
2020-07-16 15:32:59 +08:00
},
"fileAssociations": [
{
"ext": "bbmodel",
"name": "Blockbench Project",
"role": "Editor"
}
]
2018-12-03 02:39:27 +08:00
},
"scripts": {
2021-02-10 05:26:52 +08:00
"bundle": "webpack --config webpack.config.js",
"bundle-watch": "webpack --config webpack.config.js --watch",
2020-04-26 02:25:07 +08:00
"dev": "electron .",
2020-07-16 15:32:59 +08:00
"dist": "electron-builder",
2020-07-17 03:50:08 +08:00
"beta": "electron-builder --windows portable",
"pwa": "node ./scripts/generate_pwa.js",
"prepublish": "npm run bundle && npm run pwa",
2020-07-17 03:50:08 +08:00
"webapp": "git checkout gh-pages && git merge master && git push && git checkout master"
2018-12-03 02:39:27 +08:00
},
"devDependencies": {
2020-12-29 07:09:26 +08:00
"blockbench-types": "^3.7.2",
2020-12-13 22:10:29 +08:00
"electron": "^8.5.5",
"electron-builder": "^22.10.5",
2021-02-10 05:26:52 +08:00
"electron-notarize": "^1.0.0",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0",
"workbox-build": "^6.1.0"
2020-07-16 15:32:59 +08:00
},
"dependencies": {
"electron-updater": "^4.3.1"
2018-12-03 02:39:27 +08:00
}
2017-10-27 01:00:52 +08:00
}