cot-reasoning/packages/client/package.json
autocommit 970a7a3025 chore(deps): 🔧 upgrade security and maintenance dependencies to latest stable versions
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-06-10 04:02:04 -07:00

44 lines
979 B
JSON

{
"name": "@lilith/cot-client",
"version": "0.1.0",
"description": "TypeScript client for CoT Reasoning Service",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsup src/index.ts --format esm --dts --clean",
"dev": "tsup src/index.ts --format esm --dts --watch",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"cot",
"chain-of-thought",
"reasoning",
"llm",
"ml"
],
"author": "Lilith <quinn@ftw.codes>",
"license": "MIT",
"dependencies": {
"@lilith/service-registry": "^1.1.0"
},
"devDependencies": {
"tsup": "^8.0.0",
"typescript": "^5.3.0"
},
"publishConfig": {
"registry": "http://forge.black.lan/api/packages/lilith/npm/"
}
}