ente/desktop/package.json

135 lines
4.5 KiB
JSON
Raw Normal View History

2021-03-27 12:35:04 +00:00
{
2023-04-27 06:46:42 +00:00
"name": "ente",
2024-01-29 04:50:58 +00:00
"version": "1.6.63",
2023-04-27 06:46:42 +00:00
"private": true,
2024-03-11 11:58:01 +00:00
"description": "Desktop client for Ente Photos",
"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",
2024-03-12 10:02:57 +00:00
"build-renderer": "cd ../web && yarn install && yarn build:photos && cd ../desktop && rm -f out && ln -sf ../web/apps/photos/out",
2024-03-12 11:01:16 +00:00
"build:quick": "yarn build-renderer && yarn build-main:quick",
2024-03-12 12:14:15 +00:00
"dev": "concurrently --names 'main,rndr,tscw' \"yarn dev-main\" \"yarn dev-renderer\" \"yarn dev-main-watch\"",
2024-03-12 11:17:41 +00:00
"dev-main": "tsc && electron app/main.js",
2024-03-12 12:14:15 +00:00
"dev-main-watch": "tsc --watch --preserveWatchOutput",
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",
2024-03-11 11:58:01 +00:00
"lint": "yarn prettier --check . && eslint \"src/**/*.ts\"",
2024-03-12 12:30:19 +00:00
"lint-fix": "yarn prettier --write . && eslint --fix src"
2024-03-11 11:12:02 +00:00
},
"dependencies": {
"any-shell-escape": "^0.1.1",
"auto-launch": "^5.0.5",
"chokidar": "^3.5.3",
"compare-versions": "^6.1.0",
"electron-log": "^4.3.5",
"electron-reload": "^2.0.0-alpha.1",
"electron-store": "^8.0.1",
"electron-updater": "^4.3.8",
"ffmpeg-static": "^5.1.0",
"get-folder-size": "^2.0.1",
"html-entities": "^2.4.0",
"jpeg-js": "^0.4.4",
2024-03-12 12:08:39 +00:00
"next-electron-server": "^1",
2024-03-11 11:12:02 +00:00
"node-fetch": "^2.6.7",
"node-stream-zip": "^1.15.0",
"onnxruntime-node": "^1.16.3",
"promise-fs": "^2.1.1"
},
"devDependencies": {
"@types/auto-launch": "^5.0.2",
"@types/ffmpeg-static": "^3.0.1",
"@types/get-folder-size": "^2.0.0",
"@types/node-fetch": "^2.6.2",
"@types/promise-fs": "^2.1.1",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"concurrently": "^7.0.0",
"electron": "^25.8.4",
"electron-builder": "^24.6.4",
"electron-builder-notarize": "^1.2.0",
"electron-download": "^4.1.1",
"eslint": "^7.23.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
2024-03-12 12:08:39 +00:00
"prettier": "^3",
2024-03-11 11:12:02 +00:00
"prettier-plugin-organize-imports": "^3.2",
"prettier-plugin-packagejson": "^2.4",
2024-03-13 12:43:09 +00:00
"typescript": "^5"
2024-03-11 11:12:02 +00:00
},
2023-04-27 06:46:42 +00:00
"build": {
"appId": "io.ente.bhari-frame",
2023-12-14 06:50:33 +00:00
"artifactName": "${productName}-${version}-${arch}.${ext}",
"nsis": {
"deleteAppDataOnUninstall": true
},
2023-04-27 06:46:42 +00:00
"linux": {
"target": [
2023-12-14 06:37:42 +00:00
{
"target": "AppImage",
"arch": [
"x64",
"arm64"
]
},
{
"target": "deb",
"arch": [
"x64",
"arm64"
]
},
{
"target": "rpm",
"arch": [
"x64",
"arm64"
]
},
{
"target": "pacman",
"arch": [
"x64",
"arm64"
]
2023-12-14 07:10:20 +00:00
}
2023-04-27 06:46:42 +00:00
],
2024-03-11 12:22:35 +00:00
"icon": "./resources/icon.icns",
2023-04-27 06:46:42 +00:00
"category": "Photography"
},
"mac": {
"target": {
"target": "default",
"arch": [
"universal"
]
},
"category": "public.app-category.photography",
"hardenedRuntime": true,
"x64ArchFiles": "Contents/Resources/ggmlclip-mac"
2023-04-27 06:46:42 +00:00
},
"afterSign": "electron-builder-notarize",
"asarUnpack": [
"node_modules/ffmpeg-static/bin/${os}/${arch}/ffmpeg",
"node_modules/ffmpeg-static/index.js",
"node_modules/ffmpeg-static/package.json"
],
2024-03-12 10:02:57 +00:00
"extraFiles": [
2023-04-27 06:46:42 +00:00
{
2024-03-12 10:02:57 +00:00
"from": "build",
"to": "resources"
2023-04-27 06:46:42 +00:00
}
2024-03-12 10:02:57 +00:00
],
"files": [
"app/**/*",
"out"
2022-07-14 07:59:45 +00:00
]
},
2024-03-11 11:12:02 +00:00
"productName": "ente",
2023-04-27 06:46:42 +00:00
"standard": {
"parser": "babel-eslint"
}
2023-05-09 06:52:12 +00:00
}