UNPKG

@velatir/sdk

Version:

Official TypeScript SDK for Velatir - Monitor and approve/reject AI function calls

76 lines (75 loc) 1.88 kB
{ "name": "@velatir/sdk", "version": "0.1.3", "description": "Official TypeScript SDK for Velatir - Monitor and approve/reject AI function calls", "type": "module", "main": "dist/index.esm.js", "module": "dist/index.esm.js", "types": "dist/index.d.ts", "exports": { ".": { "import": "./dist/index.esm.js", "require": "./dist/index.js", "types": "./dist/index.d.ts" } }, "files": [ "dist", "README.md", "LICENSE" ], "scripts": { "build": "rollup -c", "build:watch": "rollup -c -w", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "lint": "eslint src --ext .ts", "lint:fix": "eslint src --ext .ts --fix", "typecheck": "tsc --noEmit", "clean": "rm -rf dist", "prepublishOnly": "npm run clean && npm run build && npm run test", "dev": "npm run build:watch" }, "keywords": [ "velatir", "ai", "function", "monitoring", "approval", "typescript", "sdk" ], "author": "Velatir <info@velatir.com>", "license": "MIT", "homepage": "https://velatir.com", "repository": { "type": "git", "url": "https://github.com/velatir/velatir-sdk" }, "bugs": { "url": "https://github.com/velatir/velatir-sdk/issues" }, "dependencies": { "axios": "^1.6.0", "tslib": "^2.8.1" }, "devDependencies": { "@rollup/plugin-commonjs": "^25.0.0", "@rollup/plugin-node-resolve": "^15.0.0", "@rollup/plugin-typescript": "^11.0.0", "@types/jest": "^29.5.0", "@types/node": "^20.0.0", "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", "eslint": "^8.45.0", "jest": "^29.5.0", "rollup": "^4.0.0", "rollup-plugin-dts": "^6.0.0", "ts-jest": "^29.1.0", "typescript": "^5.0.0" }, "engines": { "node": ">=16.0.0" } }