ai-pp3
Version:
CLI tool combining multimodal AI analysis with RawTherapee's engine to generate optimized PP3 profiles for RAW photography
116 lines • 3.08 kB
JSON
{
"name": "ai-pp3",
"version": "2.0.2",
"description": "CLI tool combining multimodal AI analysis with RawTherapee's engine to generate optimized PP3 profiles for RAW photography",
"engines": {
"node": ">=18"
},
"main": "./dist/agent.js",
"types": "./dist/agent.d.ts",
"bin": {
"ai-pp3": "./dist/bin.js"
},
"type": "module",
"dependencies": {
"@ai-sdk/amazon-bedrock": "^2.2.10",
"@ai-sdk/anthropic": "^1.2.12",
"@ai-sdk/azure": "^1.3.23",
"@ai-sdk/deepinfra": "^0.2.15",
"@ai-sdk/fireworks": "^0.2.14",
"@ai-sdk/google": "^1.2.19",
"@ai-sdk/mistral": "^1.2.8",
"@ai-sdk/openai": "^1.3.22",
"@ai-sdk/openai-compatible": "^0.2.14",
"@ai-sdk/togetherai": "^0.2.14",
"@ai-sdk/xai": "^1.2.16",
"@openrouter/ai-sdk-provider": "^0.7.1",
"@sindresorhus/is": "^7.0.2",
"ai": "^4.3.16",
"fast-xml-parser": "^5.2.4",
"nano-spawn": "^1.0.2",
"yargs": "^18.0.0"
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"@types/node": "^22.15.30",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^8.33.1",
"@typescript-eslint/parser": "^8.33.1",
"@vitest/coverage-v8": "3.2.2",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.5",
"eslint-import-resolver-typescript": "^4.4.3",
"eslint-plugin-import-x": "^4.15.1",
"eslint-plugin-prettier": "^5.4.1",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-sonarjs": "^3.0.2",
"eslint-plugin-unicorn": "^59.0.1",
"globals": "^16.2.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.0",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.33.1",
"vitest": "^3.2.2"
},
"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",
"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"
}
},
"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"
}
}