UNPKG

@sap-ai-sdk/prompt-registry

Version:

SAP Cloud SDK for AI is the official Software Development Kit (SDK) for **SAP AI Core**, **SAP Generative AI Hub**, and **Orchestration Service**.

52 lines 1.35 kB
{ "name": "@sap-ai-sdk/prompt-registry", "version": "2.15.0", "description": "", "license": "Apache-2.0", "keywords": [ "sap-ai-sdk", "ai-api", "prompt-registry" ], "repository": { "type": "git", "url": "https://github.com/SAP/ai-sdk-js", "directory": "packages/prompt-registry" }, "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "./internal.js": { "types": "./dist/internal.d.ts", "default": "./dist/internal.js" } }, "files": [ "dist/**/*.js", "dist/**/*.js.map", "dist/**/*.d.ts", "dist/**/*.d.ts.map" ], "dependencies": { "zod": "^4.4.3", "@sap-ai-sdk/core": "^2.15.0" }, "devDependencies": { "vitest": "4.1.10" }, "scripts": { "compile": "tsc", "test": "vitest run", "lint": "oxlint && oxfmt --check .", "lint:fix": "oxlint --fix && oxfmt .", "generate": "openapi-generator --generateESM --clearOutputDir -i ./src/spec/prompt-registry.yaml -o ./src/client", "apply-patches": "node ../../scripts/apply-patches.ts .", "postgenerate": "pnpm update-imports && pnpm orval && pnpm lint:fix", "update-imports": "node ../../scripts/update-imports.ts ./src/client/prompt-registry" } }