54 lines
1.3 KiB
JSON
54 lines
1.3 KiB
JSON
{
|
|
"name": "@lilith/companion-client",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"description": "TypeScript client for companion-api — session management, chat SSE, and voice WebSocket",
|
|
"author": {
|
|
"name": "Lilith Platform",
|
|
"email": "dev@lilith.sh"
|
|
},
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
},
|
|
"./types": {
|
|
"types": "./dist/types/index.d.ts",
|
|
"import": "./dist/types/index.js"
|
|
},
|
|
"./voice": {
|
|
"types": "./dist/voice/index.d.ts",
|
|
"import": "./dist/voice/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"lint": "eslint . --fix"
|
|
},
|
|
"dependencies": {
|
|
"socket.io-client": "^4.8.3"
|
|
},
|
|
"devDependencies": {
|
|
"@lilith/configs": "^2.4.1",
|
|
"@lilith/eslint-plugin-file-length": "^1.1.2",
|
|
"@types/node": "^20.19.28",
|
|
"eslint": "^9.39.2",
|
|
"tsup": "^8.3.5",
|
|
"typescript": "^5.9.3",
|
|
"typescript-eslint": "^8.52.0",
|
|
"vitest": "^2.1.9"
|
|
},
|
|
"_": {
|
|
"registry": "forgejo",
|
|
"publish": true,
|
|
"build": true
|
|
},
|
|
"publishConfig": {
|
|
"registry": "http://forge.black.lan/api/packages/lilith/npm/"
|
|
}
|
|
}
|