-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
85 lines (85 loc) · 2.08 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "exif-ai",
"version": "3.2.4",
"description": "A Node.js CLI and library that uses Ollama, ZhipuAI, Google Gemini, Coze or OpenAI to intelligently write image description and/or tags to exif metadata by it's content.",
"homepage": "https://github.com/tychenjiajun/exif-ai",
"repository": {
"type": "git",
"url": "https://github.com/tychenjiajun/exif-ai.git"
},
"bugs": {
"url": "https://github.com/tychenjiajun/exif-ai/issues"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"clean": "rimraf dist",
"watch": "tsc --watch -p tsconfig.build.json",
"test": "vitest",
"test:ui": "vitest --ui"
},
"engines": {
"node": ">=16"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"bin": "./dist/exif-ai.js",
"keywords": [
"ai",
"exif",
"image",
"jpeg",
"jpg",
"photo",
"ollama",
"zhipu",
"llm",
"cli",
"cli-tool",
"metadata",
"gemini",
"coze",
"openai",
"mllm"
],
"author": {
"name": "Jiajun Chen",
"email": "tychenjiajun@live.cn"
},
"license": "GPL-2.0-only",
"dependencies": {
"@coze/coze-js": "^0.2.0",
"@fluent/bundle": "^0.18.0",
"@google/generative-ai": "^0.21.0",
"chokidar": "^4.0.0",
"commander": "12.1.0",
"exiftool-vendored": "^29.0.0",
"file-type": "^19.5.0",
"https-proxy-agent": "^7.0.5",
"iso-639-1": "^3.1.3",
"node-fetch": "^3.3.2",
"ollama": "^0.5.8",
"openai": "^4.63.0",
"p-limit": "^6.1.0",
"sharp": "0.33.5",
"tencentcloud-sdk-nodejs-iai": "^4.0.918",
"ts-extras": "^0.13.0",
"xhr2": "^0.2.1"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/node": "^22.5.1",
"@vitest/coverage-istanbul": "^2.1.1",
"@vitest/ui": "^2.1.1",
"del": "^8.0.0",
"eslint": "^9.9.1",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-unicorn": "^56.0.0",
"globals": "^15.9.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0",
"vitest": "^2.0.5"
}
}