UNPKG

ai-pp3

Version:

CLI tool combining multimodal AI analysis with RawTherapee's engine to generate optimized PP3 profiles for RAW photography

110 lines 2.86 kB
{ "name": "ai-pp3", "version": "1.3.0", "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.3", "@ai-sdk/anthropic": "^1.2.3", "@ai-sdk/azure": "^1.3.5", "@ai-sdk/deepinfra": "^0.2.3", "@ai-sdk/fireworks": "^0.2.3", "@ai-sdk/google": "^1.2.4", "@ai-sdk/mistral": "^1.2.2", "@ai-sdk/openai": "^1.3.5", "@ai-sdk/openai-compatible": "^0.2.3", "@ai-sdk/togetherai": "^0.2.3", "@ai-sdk/xai": "^1.2.4", "@openrouter/ai-sdk-provider": "^0.4.5", "@sindresorhus/is": "^7.0.1", "ai": "^4.2.9", "commander": "^13.1.0", "execa": "^9.5.2", "fast-xml-parser": "^5.0.9" }, "devDependencies": { "@eslint/js": "^9.23.0", "@types/node": "^22.13.14", "@typescript-eslint/eslint-plugin": "^8.28.0", "@typescript-eslint/parser": "^8.28.0", "eslint": "^9.23.0", "eslint-config-prettier": "^10.1.1", "eslint-import-resolver-typescript": "^4.3.1", "eslint-plugin-import": "^2.31.0", "eslint-plugin-prettier": "^5.2.5", "eslint-plugin-promise": "^7.2.1", "eslint-plugin-unicorn": "^58.0.0", "globals": "^16.0.0", "prettier": "^3.5.3", "typescript": "^5.8.2", "typescript-eslint": "^8.28.0", "vitest": "^3.1.1" }, "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 .ts", "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"" } }