2023-07-06 07:37:47 -07:00
|
|
|
{
|
2023-11-19 15:16:24 -07:00
|
|
|
"name": "@immich/cli",
|
2024-06-11 05:16:49 -07:00
|
|
|
"version": "2.2.1",
|
2023-11-20 06:04:20 -07:00
|
|
|
"description": "Command Line Interface (CLI) for Immich",
|
2024-01-30 16:23:33 -07:00
|
|
|
"type": "module",
|
|
|
|
"exports": "./dist/index.js",
|
2023-11-19 15:16:24 -07:00
|
|
|
"bin": {
|
2024-02-11 15:41:29 -07:00
|
|
|
"immich": "dist/index.js"
|
2023-11-19 15:16:24 -07:00
|
|
|
},
|
2024-02-12 08:31:59 -07:00
|
|
|
"license": "GNU Affero General Public License version 3",
|
2023-11-21 14:09:19 -07:00
|
|
|
"keywords": [
|
|
|
|
"immich",
|
|
|
|
"cli"
|
|
|
|
],
|
2023-07-06 07:37:47 -07:00
|
|
|
"devDependencies": {
|
2024-02-03 20:39:01 -07:00
|
|
|
"@immich/sdk": "file:../open-api/typescript-sdk",
|
2023-07-06 07:37:47 -07:00
|
|
|
"@types/byte-size": "^8.1.0",
|
|
|
|
"@types/cli-progress": "^3.11.0",
|
2024-02-19 17:32:57 -07:00
|
|
|
"@types/lodash-es": "^4.17.12",
|
2023-07-06 07:37:47 -07:00
|
|
|
"@types/mock-fs": "^4.13.1",
|
|
|
|
"@types/node": "^20.3.1",
|
2024-02-18 12:26:01 -07:00
|
|
|
"@typescript-eslint/eslint-plugin": "^7.0.0",
|
|
|
|
"@typescript-eslint/parser": "^7.0.0",
|
2024-01-30 16:23:33 -07:00
|
|
|
"@vitest/coverage-v8": "^1.2.2",
|
2024-02-03 20:39:01 -07:00
|
|
|
"byte-size": "^8.1.1",
|
|
|
|
"cli-progress": "^3.12.0",
|
2024-02-06 04:17:15 -07:00
|
|
|
"commander": "^12.0.0",
|
2024-02-01 20:18:00 -07:00
|
|
|
"eslint": "^8.56.0",
|
|
|
|
"eslint-config-prettier": "^9.1.0",
|
|
|
|
"eslint-plugin-prettier": "^5.1.3",
|
2024-05-15 15:06:25 -07:00
|
|
|
"eslint-plugin-unicorn": "^53.0.0",
|
2023-07-06 07:37:47 -07:00
|
|
|
"mock-fs": "^5.2.0",
|
2024-02-14 07:55:40 -07:00
|
|
|
"prettier": "^3.2.5",
|
|
|
|
"prettier-plugin-organize-imports": "^3.2.4",
|
2024-02-01 20:18:00 -07:00
|
|
|
"typescript": "^5.3.3",
|
2024-02-03 20:39:01 -07:00
|
|
|
"vite": "^5.0.12",
|
2024-03-14 16:09:28 -07:00
|
|
|
"vite-tsconfig-paths": "^4.3.2",
|
2024-02-09 13:53:37 -07:00
|
|
|
"vitest": "^1.2.2",
|
2024-02-03 20:39:01 -07:00
|
|
|
"yaml": "^2.3.1"
|
2023-07-06 07:37:47 -07:00
|
|
|
},
|
|
|
|
"scripts": {
|
2024-02-03 20:39:01 -07:00
|
|
|
"build": "vite build",
|
2024-02-19 15:25:57 -07:00
|
|
|
"lint": "eslint \"src/**/*.ts\" --max-warnings 0",
|
2023-12-18 19:29:26 -07:00
|
|
|
"lint:fix": "npm run lint -- --fix",
|
2023-11-20 06:04:20 -07:00
|
|
|
"prepack": "npm run build",
|
2024-01-30 16:23:33 -07:00
|
|
|
"test": "vitest",
|
|
|
|
"test:cov": "vitest --coverage",
|
2023-11-19 15:16:24 -07:00
|
|
|
"format": "prettier --check .",
|
|
|
|
"format:fix": "prettier --write .",
|
2024-02-19 15:25:57 -07:00
|
|
|
"check": "tsc --noEmit"
|
2023-11-20 06:36:17 -07:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2024-02-11 15:41:29 -07:00
|
|
|
"url": "git+https://github.com/immich-app/immich.git",
|
2023-11-20 06:36:17 -07:00
|
|
|
"directory": "cli"
|
2024-02-02 22:44:53 -07:00
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">=20.0.0"
|
2024-02-19 17:32:57 -07:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-04-25 07:48:17 -07:00
|
|
|
"fast-glob": "^3.3.2",
|
2024-02-19 17:32:57 -07:00
|
|
|
"lodash-es": "^4.17.21"
|
2024-05-01 06:05:18 -07:00
|
|
|
},
|
|
|
|
"volta": {
|
2024-06-04 02:35:24 -07:00
|
|
|
"node": "20.14.0"
|
2023-07-06 07:37:47 -07:00
|
|
|
}
|
|
|
|
}
|