mirror of
https://github.com/SrIzan10/hctv.git
synced 2026-06-06 00:56:56 +00:00
42 lines
921 B
JSON
42 lines
921 B
JSON
{
|
|
"name": "@hctv/hono-ws",
|
|
"version": "1.1.0",
|
|
"description": "Hono WebSocket helper for Node.js (in-house fork)",
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.mjs",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup ./src/index.ts --format esm,cjs --dts",
|
|
"dev": "tsup ./src/index.ts --format esm,cjs --dts --watch"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.mts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"type": "module",
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/honojs/middleware",
|
|
"devDependencies": {
|
|
"@hono/node-server": "^2.0.1",
|
|
"@types/ws": "^8",
|
|
"hono": "^4.12.16",
|
|
"tsup": "^8.0.1"
|
|
},
|
|
"dependencies": {
|
|
"ws": "^8.17.0",
|
|
"@hctv/db": "workspace:*"
|
|
},
|
|
"peerDependencies": {
|
|
"@hono/node-server": "^2.0.1",
|
|
"hono": "^4.12.16"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.14.1"
|
|
}
|
|
}
|