34 lines
847 B
JSON
34 lines
847 B
JSON
{
|
|
"name": "@honcho-ai/sdk",
|
|
"version": "1.2.1",
|
|
"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": {
|
|
"@types/node": "^24.0.1",
|
|
"@honcho-ai/core": "1.2.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"
|
|
}
|
|
}
|