ente/desktop/package.json

59 lines
2.3 KiB
JSON
Raw Normal View History

2021-03-27 12:35:04 +00:00
{
2023-04-27 06:46:42 +00:00
"name": "ente",
"version": "1.7.0-beta.0",
2023-04-27 06:46:42 +00:00
"private": true,
2024-03-11 11:58:01 +00:00
"description": "Desktop client for Ente Photos",
"repository": "github:ente-io/photos-desktop",
2024-03-11 11:58:01 +00:00
"author": "Ente <code@ente.io>",
2024-03-12 10:02:57 +00:00
"main": "app/main.js",
2024-03-11 11:12:02 +00:00
"scripts": {
2024-03-12 10:02:57 +00:00
"build": "yarn build-renderer && yarn build-main",
"build-main": "tsc && electron-builder",
"build-main:quick": "tsc && electron-builder --dir --config.compression=store --config.mac.identity=null",
"build-renderer": "cd ../web && yarn install && yarn build:photos && cd ../desktop && shx rm -f out && shx ln -sf ../web/apps/photos/out out",
2024-03-12 11:01:16 +00:00
"build:quick": "yarn build-renderer && yarn build-main:quick",
2024-04-12 08:33:22 +00:00
"dev": "concurrently --kill-others --success first --names 'main,rndr' \"yarn dev-main\" \"yarn dev-renderer\"",
2024-03-12 11:17:41 +00:00
"dev-main": "tsc && electron app/main.js",
2024-03-12 10:02:57 +00:00
"dev-renderer": "cd ../web && yarn install && yarn dev:photos",
2024-03-11 11:12:02 +00:00
"postinstall": "electron-builder install-app-deps",
"lint": "yarn prettier --check --log-level warn . && eslint --ext .ts src && yarn tsc",
"lint-fix": "yarn prettier --write --log-level warn . && eslint --fix --ext .ts src && yarn tsc"
2024-03-11 11:12:02 +00:00
},
"resolutions": {
"jackspeak": "2.1.1"
},
2024-03-11 11:12:02 +00:00
"dependencies": {
"any-shell-escape": "^0.1",
"auto-launch": "^5.0",
"chokidar": "^3.6",
"compare-versions": "^6.1",
"electron-log": "^5.1",
"electron-store": "^8.2",
"electron-updater": "^6.1",
"ffmpeg-static": "^5.2",
"html-entities": "^2.5",
"jpeg-js": "^0.4",
2024-03-12 12:08:39 +00:00
"next-electron-server": "^1",
"node-stream-zip": "^1.15",
"onnxruntime-node": "^1.17"
2024-03-11 11:12:02 +00:00
},
"devDependencies": {
2024-04-30 10:29:10 +00:00
"@tsconfig/node20": "^20.1.4",
"@types/auto-launch": "^5.0",
"@types/ffmpeg-static": "^3.0",
"@typescript-eslint/eslint-plugin": "^7",
"@typescript-eslint/parser": "^7",
"concurrently": "^8",
"electron": "^30",
"electron-builder": "25.0.0-alpha.6",
"electron-builder-notarize": "^1.5",
"eslint": "^8",
2024-03-12 12:08:39 +00:00
"prettier": "^3",
"prettier-plugin-organize-imports": "^3",
"prettier-plugin-packagejson": "^2",
"shx": "^0.3",
2024-03-13 12:43:09 +00:00
"typescript": "^5"
2024-03-11 11:12:02 +00:00
},
"productName": "ente"
2023-05-09 06:52:12 +00:00
}