ente/package.json

58 lines
1.3 KiB
JSON
Raw Normal View History

2021-03-27 12:35:04 +00:00
{
2021-04-02 09:12:06 +00:00
"name": "bhari-frame",
2021-04-03 06:04:34 +00:00
"productName": "bhari frame",
"version": "0.0.1",
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"
],
"category": "Photography"
},
"dmg": {
"icon": false
},
"mac": {
"category": "public.app-category.photography"
},
"extraFiles": [
{
"from": "build",
"to": "resources",
"filter": [
"**/*"
]
}
]
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",
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",
"test-release": "electron-builder",
"release": "electron-builder -mwl"
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
"@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",
"typescript": "^4.2.3"
2021-03-27 12:35:04 +00:00
},
2021-04-01 07:53:44 +00:00
"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"
2021-04-01 07:53:44 +00:00
}
2021-03-27 12:35:04 +00:00
}