ente/package.json
2022-04-26 16:09:50 +05:30

69 lines
1.7 KiB
JSON

{
"name": "ente",
"productName": "ente",
"version": "1.4.1",
"private": true,
"description": "Desktop client for ente.io",
"main": "app/main.js",
"build": {
"appId": "io.ente.bhari-frame",
"artifactName": "${productName}-${version}.${ext}",
"linux": {
"target": [
"AppImage",
"deb",
"rpm",
"tar.gz"
],
"icon": "./build/icon.icns",
"category": "Photography"
},
"mac": {
"category": "public.app-category.photography",
"hardenedRuntime": true
},
"afterSign": "electron-builder-notarize",
"extraFiles": [
{
"from": "build",
"to": "resources",
"filter": [
"**/*"
]
}
]
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"build": "tsc",
"watch": "tsc -w",
"lint": "eslint -c .eslintrc --ext .ts ./src",
"start": "yarn build && electron ./app/main.js",
"test-release": "yarn build && electron-builder"
},
"author": "ente <code@ente.io>",
"devDependencies": {
"@sentry/cli": "^1.68.0",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"electron": "^15.3.0",
"electron-builder": "^23.0.3",
"electron-builder-notarize": "^1.2.0",
"electron-download": "^4.1.1",
"eslint": "^7.23.0",
"prettier": "2.5.1",
"typescript": "^4.2.3"
},
"dependencies": {
"@sentry/electron": "^2.5.1",
"@types/node": "^14.14.37",
"@types/promise-fs": "^2.1.1",
"electron-log": "^4.3.5",
"electron-reload": "^2.0.0-alpha.1",
"electron-store": "^8.0.1",
"electron-updater": "^4.3.8",
"node-stream-zip": "^1.15.0",
"promise-fs": "^2.1.1"
}
}