ente/package.json

63 lines
1.5 KiB
JSON
Raw Normal View History

2021-03-27 12:35:04 +00:00
{
2021-04-09 06:42:17 +00:00
"name": "ente",
2021-04-04 13:17:30 +00:00
"productName": "ente",
2021-07-10 07:19:43 +00:00
"version": "1.0.8",
2021-04-01 07:37:19 +00:00
"private": true,
2021-03-27 12:35:04 +00:00
"description": "Desktop client of ente",
2021-04-01 07:37:19 +00:00
"main": "app/main.js",
"build": {
2021-04-09 06:42:17 +00:00
"appId": "io.ente.bhari-frame",
"artifactName": "${productName}-${version}.${ext}",
2021-04-01 07:37:19 +00:00
"linux": {
"target": [
2021-04-09 06:42:17 +00:00
"AppImage",
"deb",
2021-04-27 12:33:48 +00:00
"rpm",
"tar.gz"
],
2021-04-09 06:42:17 +00:00
"icon": "./build/icon.icns",
"category": "Photography"
},
"mac": {
2021-07-09 06:59:58 +00:00
"category": "public.app-category.photography",
"hardenedRuntime": true
},
2021-07-09 06:59:58 +00:00
"afterSign": "electron-builder-notarize",
"extraFiles": [
{
"from": "build",
"to": "resources",
"filter": [
"**/*"
]
}
]
2021-04-01 07:37:19 +00:00
},
2021-03-27 12:35:04 +00:00
"scripts": {
2021-04-01 07:37:19 +00:00
"postinstall": "electron-builder install-app-deps",
2021-03-27 12:35:04 +00:00
"build": "tsc",
"watch": "tsc -w",
"lint": "eslint -c .eslintrc --ext .ts ./src",
2021-04-01 07:37:19 +00:00
"start": "yarn build && electron ./app/main.js",
"test-release": "electron-builder",
2021-04-04 13:17:30 +00:00
"release": "electron-builder -mwl --publish always"
2021-03-27 12:35:04 +00:00
},
2021-04-09 06:42:17 +00:00
"author": "ente <code@ente.io>",
2021-03-27 12:35:04 +00:00
"devDependencies": {
2021-03-31 05:24:36 +00:00
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"electron": "^11.0.2",
2021-04-01 07:37:19 +00:00
"electron-builder": "^22.10.5",
2021-07-09 06:59:58 +00:00
"electron-builder-notarize": "^1.2.0",
2021-03-31 05:24:36 +00:00
"eslint": "^7.23.0",
"typescript": "^4.2.3"
2021-03-27 12:35:04 +00:00
},
2021-04-01 07:53:44 +00:00
"dependencies": {
"@types/node": "^14.14.37",
"@types/promise-fs": "^2.1.1",
"electron-is-dev": "^2.0.0",
"electron-updater": "^4.3.8",
"promise-fs": "^2.1.1"
2021-04-01 07:53:44 +00:00
}
2021-03-27 12:35:04 +00:00
}