@robota-sdk/tools
Version:
Tools and utilities package for Robota SDK - providing AI function calling and tool integration capabilities
83 lines • 1.93 kB
JSON
{
"name": "@robota-sdk/tools",
"version": "1.0.3",
"description": "Tools and utilities package for Robota SDK - providing AI function calling and tool integration capabilities",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/woojubb/robota.git",
"directory": "packages/tools"
},
"homepage": "https://robota.io/",
"bugs": {
"url": "https://github.com/woojubb/robota/issues"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md"
],
"keywords": [
"ai",
"agent",
"llm",
"tools",
"utilities",
"function-calling",
"typescript",
"robota",
"sdk",
"openai",
"anthropic",
"mcp",
"tool-provider",
"ai-integration"
],
"author": "Robota SDK Team",
"license": "MIT",
"engines": {
"node": ">=18.0.0",
"bun": ">=1.0.0"
},
"dependencies": {
"zod": "^3.24.4"
},
"peerDependencies": {
"@robota-sdk/core": "1.0.3"
},
"devDependencies": {
"@types/node": "^20.10.6",
"rimraf": "^5.0.5",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.6.1",
"eslint": "^8.56.0",
"@robota-sdk/core": "1.0.3"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "tsup",
"build:check": "bun run typecheck && bun run build",
"dev": "tsup --watch",
"clean": "rimraf dist && rimraf tsconfig.tsbuildinfo",
"typecheck": "tsc --noEmit",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix"
}
}