UNPKG

@sap-ai-sdk/ai-api

Version:

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

35 lines 1.19 kB
{ "name": "@sap-ai-sdk/ai-api", "version": "2.0.0", "description": "", "license": "Apache-2.0", "keywords": [ "sap-ai-sdk", "ai-api" ], "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ "dist/**/*.js", "dist/**/*.js.map", "dist/**/*.d.ts", "dist/**/*.d.ts.map", "internal.js", "internal.d.ts" ], "dependencies": { "@sap-cloud-sdk/connectivity": "^4.1.2", "@sap-cloud-sdk/util": "^4.1.2", "@sap-ai-sdk/core": "^2.0.0" }, "scripts": { "compile": "tsc", "compile:cjs": "tsc -p tsconfig.cjs.json", "test": "NODE_OPTIONS=--experimental-vm-modules jest", "lint": "eslint . && prettier . --config ../../.prettierrc --ignore-path ../../.prettierignore -c", "lint:fix": "eslint . --fix && prettier . --config ../../.prettierrc --ignore-path ../../.prettierignore -w --log-level error", "generate": "openapi-generator --generateESM --clearOutputDir -i ./src/spec/AI_CORE_API.yaml -o ./src/client && pnpm update-imports && pnpm lint:fix", "update-imports": "node --no-warnings --loader ts-node/esm ../../scripts/update-imports.ts ./src/client/AI_CORE_API" } }