websocket/core/package.json
autocommit 4d92e1d14e deps-upgrade(deps): ⬆️ Update dependencies across client, core, and server packages
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-06-10 04:53:05 -07:00

49 lines
1,017 B
JSON

{
"name": "@lilith/websocket-core",
"version": "1.0.0",
"description": "Shared types and event contracts for WebSocket communication",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"lint": "eslint src --fix",
"lint:check": "eslint src"
},
"keywords": [
"websocket",
"types",
"socket.io",
"typescript"
],
"author": "Lilith Platform",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"registry": "http://forge.black.lan/api/packages/lilith/npm/"
},
"_": {
"registry": "forgejo",
"publish": true,
"build": true
},
"devDependencies": {
"@lilith/configs": "workspace:*",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
}
}