ente/package.json

39 lines
993 B
JSON
Raw Normal View History

2021-03-27 12:35:04 +00:00
{
"name": "electron-frame",
2021-04-01 07:37:19 +00:00
"productName": "electron frame",
2021-03-27 12:35:04 +00:00
"version": "1.0.0",
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": {
"appId": "io.ente.electron-frame",
"linux": {
"target": "AppImage"
},
"publish": null
},
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",
"release": "yarn build && electron-builder"
2021-03-27 12:35:04 +00:00
},
2021-04-01 07:37:19 +00:00
"author": "abhinav@ente.io",
2021-03-27 12:35:04 +00:00
"devDependencies": {
2021-03-31 05:24:36 +00:00
"@types/node": "^14.14.37",
2021-03-30 11:26:36 +00:00
"@types/promise-fs": "^2.1.1",
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-03-31 05:24:36 +00:00
"eslint": "^7.23.0",
2021-03-30 11:26:36 +00:00
"promise-fs": "^2.1.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": {
"electron-is-dev": "^2.0.0"
}
2021-03-27 12:35:04 +00:00
}