44 lines
979 B
JSON
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/"
|
|
}
|
|
}
|