mirror of
https://github.com/immich-app/immich.git
synced 2024-11-15 09:59:00 -07:00
73 lines
1.9 KiB
JSON
73 lines
1.9 KiB
JSON
{
|
|
"name": "@immich/cli",
|
|
"version": "2.2.26",
|
|
"description": "Command Line Interface (CLI) for Immich",
|
|
"type": "module",
|
|
"exports": "./dist/index.js",
|
|
"bin": {
|
|
"immich": "dist/index.js"
|
|
},
|
|
"license": "GNU Affero General Public License version 3",
|
|
"keywords": [
|
|
"immich",
|
|
"cli"
|
|
],
|
|
"devDependencies": {
|
|
"@eslint/eslintrc": "^3.1.0",
|
|
"@eslint/js": "^9.8.0",
|
|
"@immich/sdk": "file:../open-api/typescript-sdk",
|
|
"@types/byte-size": "^8.1.0",
|
|
"@types/cli-progress": "^3.11.0",
|
|
"@types/lodash-es": "^4.17.12",
|
|
"@types/mock-fs": "^4.13.1",
|
|
"@types/node": "^20.16.11",
|
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
"@typescript-eslint/parser": "^8.0.0",
|
|
"@vitest/coverage-v8": "^2.0.5",
|
|
"byte-size": "^9.0.0",
|
|
"cli-progress": "^3.12.0",
|
|
"commander": "^12.0.0",
|
|
"eslint": "^9.0.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-prettier": "^5.1.3",
|
|
"eslint-plugin-unicorn": "^55.0.0",
|
|
"globals": "^15.9.0",
|
|
"mock-fs": "^5.2.0",
|
|
"prettier": "^3.2.5",
|
|
"prettier-plugin-organize-imports": "^4.0.0",
|
|
"typescript": "^5.3.3",
|
|
"vite": "^5.0.12",
|
|
"vite-tsconfig-paths": "^5.0.0",
|
|
"vitest": "^2.0.5",
|
|
"vitest-fetch-mock": "^0.3.0",
|
|
"yaml": "^2.3.1"
|
|
},
|
|
"scripts": {
|
|
"build": "vite build",
|
|
"lint": "eslint \"src/**/*.ts\" --max-warnings 0",
|
|
"lint:fix": "npm run lint -- --fix",
|
|
"prepack": "npm run build",
|
|
"test": "vitest",
|
|
"test:cov": "vitest --coverage",
|
|
"format": "prettier --check .",
|
|
"format:fix": "prettier --write .",
|
|
"check": "tsc --noEmit"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/immich-app/immich.git",
|
|
"directory": "cli"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.0.0"
|
|
},
|
|
"dependencies": {
|
|
"fast-glob": "^3.3.2",
|
|
"fastq": "^1.17.1",
|
|
"lodash-es": "^4.17.21"
|
|
},
|
|
"volta": {
|
|
"node": "20.18.0"
|
|
}
|
|
}
|