mirror of
https://github.com/immich-app/immich.git
synced 2024-11-28 09:33:27 +02:00
7e38e7c949
* Allow building and installing cli * feat: add format fix * docs: remove cli folder * feat: use immich scoped package * feat: rewrite cli readme * docs: add info on running without building * cleanup * chore: remove import functionality from cli * feat: add logout to cli * docs: add todo for file format from server * docs: add compilation step to cli * fix: success message spacing * feat: can create albums * fix: add check step to cli * fix: typos * feat: pull file formats from server * chore: use crawl service from server * chore: fix lint * docs: add cli documentation * chore: rename ignore pattern * chore: add version number to cli * feat: use sdk * fix: cleanup * feat: album name on windows * chore: remove skipped asset field * feat: add more info to server-info command * chore: cleanup * chore: remove unneeded packages * chore: fix docs links * feat: add cli v2 milestone * fix: set correct cli date --------- Co-authored-by: Alex <alex.tran1502@gmail.com>
77 lines
1.9 KiB
JSON
77 lines
1.9 KiB
JSON
{
|
|
"name": "@immich/cli",
|
|
"version": "2.0.0",
|
|
"main": "dist/index.js",
|
|
"bin": {
|
|
"immich": "./dist/index.js"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^1.6.2",
|
|
"byte-size": "^8.1.1",
|
|
"cli-progress": "^3.12.0",
|
|
"commander": "^11.0.0",
|
|
"form-data": "^4.0.0",
|
|
"glob": "^10.3.1",
|
|
"yaml": "^2.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/byte-size": "^8.1.0",
|
|
"@types/chai": "^4.3.5",
|
|
"@types/cli-progress": "^3.11.0",
|
|
"@types/jest": "^29.5.2",
|
|
"@types/js-yaml": "^4.0.5",
|
|
"@types/mime-types": "^2.1.1",
|
|
"@types/mock-fs": "^4.13.1",
|
|
"@types/node": "^20.3.1",
|
|
"@typescript-eslint/eslint-plugin": "^5.60.1",
|
|
"@typescript-eslint/parser": "^5.48.1",
|
|
"chai": "^4.3.7",
|
|
"eslint": "^8.43.0",
|
|
"eslint-config-prettier": "^8.8.0",
|
|
"eslint-plugin-jest": "^27.2.2",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"eslint-plugin-unicorn": "^47.0.0",
|
|
"jest": "^29.5.0",
|
|
"jest-extended": "^4.0.0",
|
|
"jest-message-util": "^29.5.0",
|
|
"jest-mock-axios": "^4.7.2",
|
|
"jest-when": "^3.5.2",
|
|
"mock-fs": "^5.2.0",
|
|
"ts-jest": "^29.1.0",
|
|
"ts-node": "^10.9.1",
|
|
"tslib": "^2.5.3",
|
|
"typescript": "^4.9.4"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc --project tsconfig.build.json",
|
|
"lint": "eslint \"src/**/*.ts\" --max-warnings 0",
|
|
"prepack": "yarn build ",
|
|
"test": "jest",
|
|
"test:cov": "jest --coverage",
|
|
"format": "prettier --check .",
|
|
"format:fix": "prettier --write .",
|
|
"check": "tsc --noEmit"
|
|
},
|
|
"jest": {
|
|
"clearMocks": true,
|
|
"moduleFileExtensions": [
|
|
"js",
|
|
"json",
|
|
"ts"
|
|
],
|
|
"rootDir": ".",
|
|
"testRegex": ".*\\.spec\\.ts$",
|
|
"transform": {
|
|
"^.+\\.ts$": "ts-jest"
|
|
},
|
|
"collectCoverageFrom": [
|
|
"<rootDir>/src/**/*.(t|j)s"
|
|
],
|
|
"moduleNameMapper": {
|
|
"^@api(|/.*)$": "<rootDir>/src/api/$1"
|
|
},
|
|
"coverageDirectory": "./coverage",
|
|
"testEnvironment": "node"
|
|
}
|
|
}
|