@veris-ai/sdk
Version:
A TypeScript package for Veris AI tools
90 lines (89 loc) • 2.36 kB
JSON
{
"name": "@veris-ai/sdk",
"version": "1.2.1",
"description": "A TypeScript package for Veris AI tools",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"files": [
"dist/"
],
"scripts": {
"build": "pnpm run clean && tsc && pnpm run build:esm",
"build:esm": "tsc -p tsconfig.esm.json && mv dist-esm/index.js dist/index.mjs && node fix-imports.js",
"dev": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm run build && pnpm run test",
"clean": "rm -rf dist dist-esm"
},
"keywords": [
"veris",
"ai",
"sdk",
"typescript",
"mock",
"tools"
],
"author": {
"name": "Mehdi Jamei",
"email": "mehdi@veris.ai"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/veris-ai/veris-typescript-sdk.git"
},
"bugs": {
"url": "https://github.com/veris-ai/veris-typescript-sdk/issues"
},
"homepage": "https://github.com/veris-ai/veris-typescript-sdk#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.6",
"axios": "^1.6.0",
"express": "^4.18.2",
"zod": "^3.25.67",
"zod-to-json-schema": "^3.24.6"
},
"devDependencies": {
"@langchain/core": "^0.3.68",
"@langchain/langgraph": "^0.4.3",
"@langchain/openai": "^0.6.7",
"@openai/agents": "^0.0.15",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@types/node-fetch": "^2.6.9",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"dotenv": "^16.4.5",
"eslint": "^8.0.0",
"jest": "^29.0.0",
"llamaindex": "^0.11.11",
"node-fetch": "^2.7.0",
"prettier": "^3.0.0",
"semantic-release": "^24.2.5",
"ts-jest": "^29.0.0",
"tsx": "^4.20.3",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public"
}
}