mirror of
https://github.com/immich-app/immich.git
synced 2026-06-27 22:35:57 +00:00
37 lines
975 B
JSON
37 lines
975 B
JSON
{
|
|
"name": "@immich/scripts",
|
|
"version": "3.0.0-rc.2",
|
|
"private": true,
|
|
"type": "module",
|
|
"main": "pump-wrapper.ts",
|
|
"license": "GNU Affero General Public License version 3",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/immich-app/immich.git",
|
|
"directory": "packages/scripts"
|
|
},
|
|
"scripts": {
|
|
"cli": "node dist/main.js",
|
|
"build": "vite build",
|
|
"watch": "vite build --watch",
|
|
"lint": "eslint \"src/**/*.ts\" --max-warnings 0",
|
|
"lint:fix": "pnpm run lint --fix",
|
|
"test": "vitest",
|
|
"test:cov": "vitest --coverage",
|
|
"format": "prettier --cache --check .",
|
|
"format:fix": "prettier --cache --write --list-different .",
|
|
"check": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"commander": "^15.0.0",
|
|
"semver": "^7.8.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^24.13.2",
|
|
"@types/semver": "^7.7.1",
|
|
"vite": "^8.0.16",
|
|
"vitest": "^4.1.8"
|
|
},
|
|
"packageManager": "pnpm@11.6.0"
|
|
}
|