2024-04-07 11:32:29 +02:00
|
|
|
{
|
|
|
|
|
"name": "@homarr/websocket",
|
|
|
|
|
"version": "0.1.0",
|
|
|
|
|
"private": true,
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"type": "module",
|
2024-09-01 16:40:22 +03:00
|
|
|
"main": "./src/main.ts",
|
|
|
|
|
"types": "./src/main.ts",
|
2024-04-07 11:32:29 +02:00
|
|
|
"scripts": {
|
2024-11-23 17:16:44 +01:00
|
|
|
"build": "esbuild src/main.ts --bundle --platform=node --outfile=wssServer.cjs --external:bcrypt --external:@opentelemetry/api --external:cpu-features --loader:.html=text --loader:.scss=text --loader:.node=text",
|
2024-04-07 11:32:29 +02:00
|
|
|
"clean": "rm -rf .turbo node_modules",
|
2024-09-01 16:40:22 +03:00
|
|
|
"dev": "pnpm with-env tsx ./src/main.ts",
|
2024-04-07 11:32:29 +02:00
|
|
|
"format": "prettier --check . --ignore-path ../../.gitignore",
|
2024-09-01 16:40:22 +03:00
|
|
|
"lint": "eslint",
|
2024-04-07 11:32:29 +02:00
|
|
|
"typecheck": "tsc --noEmit",
|
|
|
|
|
"with-env": "dotenv -e ../../.env --"
|
|
|
|
|
},
|
2024-09-01 16:40:22 +03:00
|
|
|
"prettier": "@homarr/prettier-config",
|
2024-04-07 11:32:29 +02:00
|
|
|
"dependencies": {
|
|
|
|
|
"@homarr/api": "workspace:^0.1.0",
|
|
|
|
|
"@homarr/auth": "workspace:^0.1.0",
|
|
|
|
|
"@homarr/common": "workspace:^0.1.0",
|
|
|
|
|
"@homarr/db": "workspace:^0.1.0",
|
|
|
|
|
"@homarr/definitions": "workspace:^0.1.0",
|
|
|
|
|
"@homarr/log": "workspace:^",
|
|
|
|
|
"@homarr/redis": "workspace:^0.1.0",
|
|
|
|
|
"@homarr/validation": "workspace:^0.1.0",
|
2024-12-03 17:48:43 +00:00
|
|
|
"dotenv": "^16.4.7",
|
2024-10-26 23:34:21 +00:00
|
|
|
"tsx": "4.19.2",
|
2024-09-01 16:40:22 +03:00
|
|
|
"ws": "^8.18.0"
|
2024-04-07 11:32:29 +02:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@homarr/eslint-config": "workspace:^0.2.0",
|
|
|
|
|
"@homarr/prettier-config": "workspace:^0.1.0",
|
|
|
|
|
"@homarr/tsconfig": "workspace:^0.1.0",
|
2024-11-02 09:27:16 +00:00
|
|
|
"@types/ws": "^8.5.13",
|
2024-12-13 21:42:35 +00:00
|
|
|
"eslint": "^9.17.0",
|
2024-12-04 10:04:13 +00:00
|
|
|
"prettier": "^3.4.2",
|
2024-11-23 19:39:20 +01:00
|
|
|
"typescript": "^5.7.2"
|
2024-09-01 16:40:22 +03:00
|
|
|
}
|
2024-04-07 11:32:29 +02:00
|
|
|
}
|