forked from sh000gun/immich_cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.2 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "immich",
"version": "0.37.0",
"description": "Immich CLI",
"main": "bin/index.js",
"scripts": {
"build": "tsc",
"start": "node bin/index.js",
"test": "node bin/index.js upload -d ./test",
"format": "prettier --check .",
"format:fix": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/alextran1502/immich-cli.git"
},
"keywords": [
"immich",
"cli"
],
"author": "Alex Tran",
"license": "MIT",
"bugs": {
"url": "https://github.com/alextran1502/immich-cli/issues"
},
"homepage": "https://github.com/alextran1502/immich-cli#readme",
"dependencies": {
"axios": "^0.26.0",
"chalk": "^2.4.1",
"cli-progress": "^3.10.0",
"commander": "^9.0.0",
"fdir": "^5.2.0",
"form-data": "^4.0.0",
"mime-types": "^2.1.34",
"p-limit": "3.1.0",
"systeminformation": "^5.11.6"
},
"files": [
"LICENSE",
"README.md",
"bin/**/*.js",
"bin/**/*.d.ts"
],
"bin": {
"immich": "./bin/index.js"
},
"devDependencies": {
"@types/cli-progress": "^3.11.0",
"@types/mime-types": "^2.1.1",
"@types/node": "^18.15.2",
"prettier": "^2.8.6",
"typescript": "^4.7.4"
}
}