ente/package.json
Abhinav-grd 8e47bb13c6 v1.0.3
2021-04-27 18:30:53 +05:30

64 lines
1.5 KiB
JSON

{
"name": "ente",
"productName": "ente",
"version": "1.0.3",
"private": true,
"description": "Desktop client of ente",
"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": {
"target": "dmg",
"category": "public.app-category.photography"
},
"win": {
"target": "nsis"
},
"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": "electron-builder",
"release": "electron-builder -mwl --publish always"
},
"author": "ente <code@ente.io>",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"electron": "^11.0.2",
"electron-builder": "^22.10.5",
"eslint": "^7.23.0",
"typescript": "^4.2.3"
},
"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"
}
}