UNPKG

genkitx-aws-bedrock

Version:
72 lines (71 loc) 1.83 kB
{ "name": "genkitx-aws-bedrock", "description": "Genkit AI framework plugin for AWS Bedrock APIs.", "keywords": [ "genkit", "genkit-plugin", "genkit-model", "aws", "aws-bedrock", "ai", "genai", "generative-ai", "gen-ai" ], "version": "1.19.1", "type": "commonjs", "main": "lib/cjs/index.js", "module": "./lib/esm/index.mjs", "repository": { "type": "git", "url": "git+https://github.com/genkit-ai/aws-bedrock-js-plugin.git" }, "author": "Xavier Portilla Edo", "license": "Apache-2.0", "dependencies": { "@aws-sdk/client-bedrock-runtime": "^3.941.0" }, "peerDependencies": { "genkit": "^1.28.0" }, "devDependencies": { "@eslint/js": "^9.11.0", "@types/aws-lambda": "^8.10.160", "@types/node": "^25.0.0", "eslint": "^10.0.2", "globals": "^17.0.0", "prettier": "^3.3.3", "rimraf": "^6.0.1", "typedoc": "^0.28.0", "typescript": "^5.5.4", "typescript-eslint": "^8.2.0" }, "types": "./lib/types/index.d.ts", "exports": { ".": { "require": "./lib/cjs/index.js", "default": "./lib/cjs/index.js", "import": "./lib/esm/index.mjs", "types": "./lib/types/index.d.ts" } }, "files": [ "lib" ], "publishConfig": { "provenance": true, "access": "public" }, "scripts": { "clean": "rimraf ./lib", "build:cjs": "tsc -p tsconfig.cjs.json", "build:esm": "tsc -p tsconfig.esm.json && npm run rename:esm", "rename:esm": "./scripts/fix-mjs.sh", "build": "npm run build:cjs && npm run build:esm", "prepack": "npm run clean && npm run build", "prettier": "prettier 'src/**/*.ts' --write", "lint": "eslint src/", "lint:fix": "eslint src/ --fix", "docs": "typedoc ./src/index.ts --out ./docs --tsconfig ./tsconfig.esm.json" } }