2026-01-30 17:31:58 -08:00
|
|
|
{
|
|
|
|
|
"name": "@lilith/client-base",
|
|
|
|
|
"version": "1.0.0",
|
|
|
|
|
"type": "module",
|
|
|
|
|
"description": "Abstract client interfaces for HTTP and WebSocket with middleware composition",
|
|
|
|
|
"author": {
|
|
|
|
|
"name": "Lilith Platform",
|
2026-04-12 10:44:26 -07:00
|
|
|
"email": "quinn@ftw.codes"
|
2026-01-30 17:31:58 -08:00
|
|
|
},
|
|
|
|
|
"main": "./dist/index.js",
|
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
|
"exports": {
|
|
|
|
|
".": {
|
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
|
"import": "./dist/index.js"
|
|
|
|
|
},
|
|
|
|
|
"./http": {
|
|
|
|
|
"types": "./dist/http/index.d.ts",
|
|
|
|
|
"import": "./dist/http/index.js"
|
|
|
|
|
},
|
|
|
|
|
"./websocket": {
|
|
|
|
|
"types": "./dist/websocket/index.d.ts",
|
|
|
|
|
"import": "./dist/websocket/index.js"
|
|
|
|
|
},
|
|
|
|
|
"./middleware": {
|
|
|
|
|
"types": "./dist/middleware/index.d.ts",
|
|
|
|
|
"import": "./dist/middleware/index.js"
|
|
|
|
|
},
|
|
|
|
|
"./factory": {
|
|
|
|
|
"types": "./dist/factory/index.d.ts",
|
|
|
|
|
"import": "./dist/factory/index.js"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"typecheck": "tsc --noEmit",
|
|
|
|
|
"build": "tsup",
|
|
|
|
|
"test": "vitest run",
|
|
|
|
|
"test:watch": "vitest",
|
|
|
|
|
"lint": "eslint . --fix"
|
|
|
|
|
},
|
|
|
|
|
"peerDependencies": {
|
|
|
|
|
"@lilith/retry": "^0.1.0"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@lilith/configs": "workspace:*",
|
|
|
|
|
"@lilith/retry": "workspace:*",
|
|
|
|
|
"@types/node": "^20.19.28",
|
|
|
|
|
"eslint": "^9.39.2",
|
|
|
|
|
"tsup": "^8.3.5",
|
|
|
|
|
"typescript": "^5.9.3",
|
|
|
|
|
"typescript-eslint": "^8.52.0",
|
|
|
|
|
"vite": "^5.4.21",
|
|
|
|
|
"vitest": "^2.1.9"
|
|
|
|
|
},
|
|
|
|
|
"_": {
|
|
|
|
|
"registry": "forgejo",
|
|
|
|
|
"publish": true,
|
|
|
|
|
"build": true
|
|
|
|
|
},
|
|
|
|
|
"publishConfig": {
|
2026-03-08 19:24:01 -07:00
|
|
|
"registry": "http://forge.black.local/api/packages/lilith/npm/"
|
2026-01-30 17:31:58 -08:00
|
|
|
}
|
|
|
|
|
}
|