mirror of
https://github.com/turnstonelabs/turnstone.git
synced 2026-08-12 23:12:23 -06:00
39 lines
751 B
JSON
39 lines
751 B
JSON
{
|
|
"name": "@turnstone/sdk",
|
|
"version": "0.4.0",
|
|
"description": "TypeScript client SDK for the turnstone AI orchestration platform",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"typecheck": "tsc --noEmit",
|
|
"generate-types": "python scripts/generate-types.py"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"src"
|
|
],
|
|
"keywords": [
|
|
"turnstone",
|
|
"ai",
|
|
"llm",
|
|
"agent",
|
|
"sdk",
|
|
"client"
|
|
],
|
|
"license": "Apache-2.0",
|
|
"devDependencies": {
|
|
"typescript": "^7.0.0",
|
|
"vitest": "^4.1"
|
|
}
|
|
}
|