1
0
Fork 0
mirror of https://github.com/alangrainger/immich-public-proxy.git synced 2024-12-27 11:21:58 +00:00
immich-public-proxy/app/package.json
2024-12-27 11:27:28 +13:00

38 lines
1.2 KiB
JSON

{
"name": "immich-public-proxy",
"version": "1.5.5",
"scripts": {
"dev": "ts-node src/index.ts",
"build": "npx tsc",
"test": "podman build --build-arg PACKAGE_VERSION=$(npm pkg get version | xargs) --format docker -t immich-proxy-test .. && podman run --init -it -p=3000:3000 --env-file .env immich-proxy-test",
"start": "node dist/index.js"
},
"author": "Alan Grainger",
"license": "AGPL-3.0",
"description": "Share your Immich photos and albums in a safe way without exposing your Immich instance to the public.",
"repository": {
"type": "git",
"url": "https://github.com/alangrainger/immich-public-proxy.git"
},
"main": "dist/index.js",
"bin": "dist/index.js",
"dependencies": {
"archiver": "^7.0.1",
"dayjs": "^1.11.13",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.21.1",
"tslib": "^2.8.1",
"typescript": "^5.6.2"
},
"devDependencies": {
"@types/archiver": "^6.0.3",
"@types/express": "^4.17.21",
"@types/node": "^16.18.111",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"eslint": "^8.49.0",
"eslint-config-standard": "^17.1.0",
"ts-node": "^10.9.2"
}
}