ente/package.json

155 lines
4.8 KiB
JSON
Raw Normal View History

2021-03-27 12:35:04 +00:00
{
2023-04-27 06:46:42 +00:00
"name": "ente",
"productName": "ente",
2023-12-16 08:44:41 +00:00
"version": "1.6.59",
2023-04-27 06:46:42 +00:00
"private": true,
"description": "Desktop client for ente.io",
"main": "app/main.js",
"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
],
"icon": "./build/icon.icns",
"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",
"extraFiles": [
{
"from": "build",
"to": "resources",
"filter": [
"**/*"
]
}
],
"asarUnpack": [
"node_modules/ffmpeg-static/bin/${os}/${arch}/ffmpeg",
"node_modules/ffmpeg-static/index.js",
"node_modules/ffmpeg-static/package.json"
],
"files": [
"app/**/*",
{
2023-05-11 07:48:48 +00:00
"from": "ui/apps/photos",
2023-04-27 06:46:42 +00:00
"to": "ui",
"filter": [
"!**/*",
"out/**/*"
]
}
2022-07-14 07:59:45 +00:00
]
},
2023-04-27 06:46:42 +00:00
"scripts": {
"postinstall": "electron-builder install-app-deps",
"prebuild": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"prepare": "husky install",
"lint": "eslint -c .eslintrc --ext .ts src",
"watch": "tsc -w",
"build-main": "yarn install && tsc",
"start-main": "yarn build-main && electron app/main.js",
2023-11-17 08:56:18 +00:00
"start-renderer": "cd ui && yarn install && yarn dev:photos",
2023-04-27 06:46:42 +00:00
"start": "concurrently \"yarn start-main\" \"yarn start-renderer\"",
2023-11-18 08:14:56 +00:00
"build-renderer": "cd ui && yarn install && yarn export:photos",
2023-04-27 06:46:42 +00:00
"build": "yarn build-renderer && yarn build-main",
2023-11-18 07:06:48 +00:00
"test-release": "cross-env IS_TEST_RELEASE=true yarn build && electron-builder --config.compression=store"
2023-04-27 06:46:42 +00:00
},
"author": "ente <code@ente.io>",
"devDependencies": {
"@sentry/cli": "^1.68.0",
"@types/auto-launch": "^5.0.2",
"@types/ffmpeg-static": "^3.0.1",
"@types/get-folder-size": "^2.0.0",
2023-07-14 08:46:31 +00:00
"@types/node": "18.15.0",
2023-04-27 06:46:42 +00:00
"@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",
"cross-env": "^7.0.3",
"electron": "^25.8.4",
"electron-builder": "^24.6.4",
2023-04-27 06:46:42 +00:00
"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",
"husky": "^8.0.1",
"lint-staged": "^13.0.1",
"prettier": "2.5.1",
"typescript": "^4.2.3"
},
"dependencies": {
2023-11-18 08:40:17 +00:00
"@sentry/electron": "^2.5.1",
2023-04-27 06:46:42 +00:00
"any-shell-escape": "^0.1.1",
"auto-launch": "^5.0.5",
2024-01-04 10:19:52 +00:00
"canvas": "^2.11.2",
2023-04-27 06:46:42 +00:00
"chokidar": "^3.5.3",
"compare-versions": "^6.1.0",
2023-04-27 06:46:42 +00:00
"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",
2024-01-04 18:34:51 +00:00
"html-entities": "^2.4.0",
2023-04-27 06:46:42 +00:00
"next-electron-server": "file:./thirdparty/next-electron-server",
"node-fetch": "^2.6.7",
"node-stream-zip": "^1.15.0",
2024-01-02 11:27:10 +00:00
"onnxruntime-node": "^1.16.3",
"promise-fs": "^2.1.1"
2023-04-27 06:46:42 +00:00
},
"standard": {
"parser": "babel-eslint"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write --ignore-unknown"
2022-08-10 07:51:26 +00:00
]
2023-04-27 06:46:42 +00:00
}
2023-05-09 06:52:12 +00:00
}