honcho/sdks/typescript/package.json

35 lines
868 B
JSON

{
"name": "@honcho-ai/sdk",
"version": "1.6.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": "biome check src/",
"lint:fix": "biome check src/ --write",
"format": "biome format src/ --write",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@honcho-ai/core": "^1.8.0",
"@types/node": "^24.0.1",
"zod": "4.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.1.2",
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.0"
}
}