ente/package.json

112 lines
2.9 KiB
JSON
Raw Normal View History

2021-03-27 12:35:04 +00:00
{
2021-04-09 06:42:17 +00:00
"name": "ente",
2021-04-04 13:17:30 +00:00
"productName": "ente",
2022-10-22 08:24:53 +00:00
"version": "1.6.11-alpha.5",
2021-04-01 07:37:19 +00:00
"private": true,
2021-08-22 19:10:38 +00:00
"description": "Desktop client for ente.io",
2022-04-19 07:12:15 +00:00
"main": "app/main.js",
2021-04-01 07:37:19 +00:00
"build": {
2021-04-09 06:42:17 +00:00
"appId": "io.ente.bhari-frame",
"artifactName": "${productName}-${version}.${ext}",
2021-04-01 07:37:19 +00:00
"linux": {
"target": [
2021-04-09 06:42:17 +00:00
"AppImage",
"deb",
2021-04-27 12:33:48 +00:00
"rpm",
2022-07-08 20:58:50 +00:00
"pacman",
2021-04-27 12:33:48 +00:00
"tar.gz"
],
2021-04-09 06:42:17 +00:00
"icon": "./build/icon.icns",
"category": "Photography"
},
"mac": {
2022-07-14 07:59:45 +00:00
"target": {
"target": "default",
"arch": [
2022-07-14 08:47:39 +00:00
"universal"
2022-07-14 07:59:45 +00:00
]
},
2021-07-09 06:59:58 +00:00
"category": "public.app-category.photography",
"hardenedRuntime": true
},
2021-07-09 06:59:58 +00:00
"afterSign": "electron-builder-notarize",
"extraFiles": [
{
"from": "build",
"to": "resources",
"filter": [
"**/*"
]
}
2022-08-10 07:51:26 +00:00
],
"files": [
"app/**/*",
{
"from": "ui",
"to": "ui",
"filter": [
"!**/*",
"out/**/*"
]
}
]
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",
2022-06-14 06:18:30 +00:00
"prebuild": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
2022-03-07 05:25:14 +00:00
"prepare": "husky install",
2022-08-13 08:32:04 +00:00
"lint": "eslint -c .eslintrc --ext .ts src",
2021-03-27 12:35:04 +00:00
"watch": "tsc -w",
2022-07-14 09:47:14 +00:00
"build-main": "yarn install && tsc",
2022-08-13 08:32:04 +00:00
"start-main": "yarn build-main && electron app/main.js",
2022-08-10 07:51:26 +00:00
"start-renderer": "cd ui && yarn install && yarn dev",
2022-03-07 05:25:14 +00:00
"start": "concurrently \"yarn start-main\" \"yarn start-renderer\"",
2022-08-10 07:51:26 +00:00
"build-renderer": "cd ui && yarn install && yarn build && cd ..",
"build": "yarn build-renderer && yarn build-main",
2022-10-15 00:58:43 +00:00
"test-release": "yarn build && electron-builder --config.compression=store"
2021-03-27 12:35:04 +00:00
},
2021-04-09 06:42:17 +00:00
"author": "ente <code@ente.io>",
2021-03-27 12:35:04 +00:00
"devDependencies": {
2021-08-09 05:22:00 +00:00
"@sentry/cli": "^1.68.0",
2022-08-19 13:58:35 +00:00
"@types/auto-launch": "^5.0.2",
"@types/get-folder-size": "^2.0.0",
2022-06-14 06:43:25 +00:00
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
2022-07-13 07:21:37 +00:00
"concurrently": "^7.0.0",
2021-11-02 11:32:49 +00:00
"electron": "^15.3.0",
2022-04-19 07:32:50 +00:00
"electron-builder": "^23.0.3",
2021-07-09 06:59:58 +00:00
"electron-builder-notarize": "^1.2.0",
2021-08-09 05:22:00 +00:00
"electron-download": "^4.1.1",
2021-03-31 05:24:36 +00:00
"eslint": "^7.23.0",
2022-06-14 06:22:07 +00:00
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
2022-06-14 06:18:30 +00:00
"husky": "^8.0.1",
"lint-staged": "^13.0.1",
2021-12-19 06:22:07 +00:00
"prettier": "2.5.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": {
2021-08-07 10:43:11 +00:00
"@sentry/electron": "^2.5.1",
"@types/node": "^14.14.37",
"@types/promise-fs": "^2.1.1",
2022-08-13 10:35:59 +00:00
"auto-launch": "^5.0.5",
2022-10-14 17:28:20 +00:00
"chokidar": "^3.5.3",
2021-07-16 06:08:59 +00:00
"electron-log": "^4.3.5",
"electron-reload": "^2.0.0-alpha.1",
"electron-store": "^8.0.1",
"electron-updater": "^4.3.8",
"get-folder-size": "^2.0.1",
2022-09-02 08:25:15 +00:00
"next-electron-server": "file:./thirdparty/next-electron-server",
"node-stream-zip": "^1.15.0",
"promise-fs": "^2.1.1"
2022-06-14 06:18:30 +00:00
},
"standard": {
"parser": "babel-eslint"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write --ignore-unknown"
]
2021-04-01 07:53:44 +00:00
}
2022-10-22 08:24:53 +00:00
}