-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.22 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.22 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "ai-pp3",
"version": "2.1.3",
"description": "CLI tool combining multimodal AI analysis with RawTherapee's engine to generate optimized PP3 profiles for RAW photography. Features automatic histogram analysis for enhanced AI processing.",
"engines": {
"node": ">=18"
},
"main": "./dist/agent.js",
"types": "./dist/agent.d.ts",
"bin": {
"ai-pp3": "./dist/bin.js"
},
"type": "module",
"scripts": {
"build": "tsc",
"postbuild": "chmod +x ./dist/bin.js",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint-staged": "lint-staged",
"prepare": "husky"
},
"dependencies": {
"@ai-sdk/amazon-bedrock": "^3.0.4",
"@ai-sdk/anthropic": "^2.0.1",
"@ai-sdk/azure": "^2.0.8",
"@ai-sdk/deepinfra": "^1.0.4",
"@ai-sdk/fireworks": "^1.0.4",
"@ai-sdk/google": "^2.0.3",
"@ai-sdk/mistral": "^2.0.1",
"@ai-sdk/openai": "^2.0.8",
"@ai-sdk/openai-compatible": "^1.0.4",
"@ai-sdk/togetherai": "^1.0.4",
"@ai-sdk/xai": "^2.0.4",
"@openrouter/ai-sdk-provider": "^1.1.2",
"@sindresorhus/is": "^7.0.2",
"ai": "^5.0.9",
"camelcase": "^8.0.0",
"fast-xml-parser": "^5.2.5",
"nano-spawn": "^1.0.2",
"sharp": "^0.34.3",
"yargs": "^18.0.0",
"zod": "^4.0.17"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@types/node": "^24.2.1",
"@types/sharp": "^0.32.0",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.39.0",
"@vitest/coverage-v8": "3.2.4",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-sonarjs": "^3.0.4",
"eslint-plugin-unicorn": "^60.0.0",
"globals": "^16.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"prettier": "^3.6.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.0",
"vitest": "^3.2.4"
},
"keywords": [
"ai",
"multimodal",
"raw",
"photography",
"rawtherapee",
"pp3",
"image-processing",
"cli",
"dng",
"nef",
"cr2",
"arw",
"computer-vision",
"photo-editing",
"batch-processing"
],
"author": {
"name": "Jiajun Chen",
"email": "tychenjiajun@live.cn",
"url": "https://github.com/tychenjiajun"
},
"license": "GPL-2.0-only",
"packageManager": "pnpm@10.14.0",
"repository": {
"type": "git",
"url": "https://github.com/tychenjiajun/art.git"
},
"bugs": {
"url": "https://github.com/tychenjiajun/art/issues"
},
"homepage": "https://github.com/tychenjiajun/art#readme",
"files": [
"dist",
"README.md",
"README.zh-CN.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/agent.d.ts",
"import": "./dist/agent.js"
},
"./provider": {
"types": "./dist/provider.d.ts",
"import": "./dist/provider.js"
},
"./raw-therapee-wrap": {
"types": "./dist/raw-therapee-wrap.d.ts",
"import": "./dist/raw-therapee-wrap.js"
}
}
}