ente/package.json
2021-04-01 18:04:53 +05:30

49 lines
1.1 KiB
JSON

{
"name": "electron-frame",
"productName": "electron_frame",
"version": "1.0.0",
"private": true,
"description": "Desktop client of ente",
"main": "app/main.js",
"build": {
"appId": "io.ente.electron-frame",
"linux": {
"target": "AppImage",
"category": "photography"
},
"extraFiles": [
{
"from": "build",
"to": "resources",
"filter": [
"**/*"
]
}
],
"publish": null
},
"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",
"release": "yarn build && electron-builder"
},
"author": "abhinav@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": {
"electron-is-dev": "^2.0.0",
"promise-fs": "^2.1.1",
"@types/promise-fs": "^2.1.1",
"@types/node": "^14.14.37"
}
}