honcho/sdks/typescript/package.json

31 lines
724 B
JSON

{
"name": "@honcho-ai/sdk",
"version": "1.1.0",
"description": "Official DX Optimized TypeScript SDK for Honcho",
"author": "Plastic Labs <hello@plasticlabs.ai>",
"license": "Apache-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc --project tsconfig.json",
"lint": "eslint src --ext .ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@types/node": "^24.0.1",
"@honcho-ai/core": "^1.1.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"eslint": "^8.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.0"
}
}