ente/package.json

68 lines
1.7 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",
2022-04-19 07:24:07 +00:00
"version": "1.4.0-alpha9",
2021-04-01 07:37:19 +00:00
"private": true,
2021-08-22 19:10:38 +00:00
"description": "Desktop client for ente.io",
2022-04-19 07:12:15 +00:00
"main": "app/main.js",
2021-04-01 07:37:19 +00:00
"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": [
"**/*"
]
}
2022-04-19 07:17:31 +00:00
]
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",
2022-04-19 07:12:15 +00:00
"build": "tsc",
2021-03-27 12:35:04 +00:00
"watch": "tsc -w",
"lint": "eslint -c .eslintrc --ext .ts ./src",
2022-04-19 07:12:15 +00:00
"start": "yarn build && electron ./app/main.js",
2022-04-12 06:40:06 +00:00
"test-release": "yarn build && electron-builder"
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-08-09 05:22:00 +00:00
"@sentry/cli": "^1.68.0",
2021-03-31 05:24:36 +00:00
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
2021-11-02 11:32:49 +00:00
"electron": "^15.3.0",
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-08-09 05:22:00 +00:00
"electron-download": "^4.1.1",
2021-03-31 05:24:36 +00:00
"eslint": "^7.23.0",
2021-12-19 06:22:07 +00:00
"prettier": "2.5.1",
2021-03-31 05:24:36 +00:00
"typescript": "^4.2.3"
2021-03-27 12:35:04 +00:00
},
2021-04-01 07:53:44 +00:00
"dependencies": {
2021-08-07 10:43:11 +00:00
"@sentry/electron": "^2.5.1",
"@types/node": "^14.14.37",
"@types/promise-fs": "^2.1.1",
2021-07-16 06:08:59 +00:00
"electron-log": "^4.3.5",
"electron-reload": "^2.0.0-alpha.1",
"electron-store": "^8.0.1",
"electron-updater": "^4.3.8",
"promise-fs": "^2.1.1"
2021-04-01 07:53:44 +00:00
}
2022-03-05 05:19:44 +00:00
}