-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.68 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@remnawave/node",
"version": "3.1.1",
"private": false,
"description": "Remnawave Node",
"homepage": "https://github.com/remnawave",
"bugs": {
"url": "https://github.com/remnawave/node/issues"
},
"license": "AGPL-3.0-only",
"author": "REMNAWAVE <github.com/remnawave>",
"repository": {
"type": "git",
"url": "git+https://github.com/remnawave/node.git"
},
"bin": {
"cli": "dist/cli.js"
},
"type": "commonjs",
"scripts": {
"build": "rspack build",
"dev": "cross-env NODE_ENV=development rspack --watch --mode development",
"start": "node dist/main.js",
"trace": "node scripts/trace.mjs",
"format": "oxfmt --check",
"format:fix": "oxfmt",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"check": "oxfmt --check && oxlint",
"fix": "oxfmt && oxlint --fix",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@henrygd/semaphore": "0.1.0",
"@kastov/body-parser-with-zstd": "2.2.2",
"@nestjs/common": "11.1.28",
"@nestjs/config": "4.0.4",
"@nestjs/core": "11.1.28",
"@nestjs/cqrs": "11.0.3",
"@nestjs/jwt": "11.0.2",
"@nestjs/passport": "11.0.5",
"@nestjs/platform-express": "11.1.28",
"@nestjs/schedule": "^6.1.3",
"@remnawave/hashed-set": "^0.0.4",
"@remnawave/node-plugins": "0.6.2",
"@remnawave/xtls-sdk": "0.16.0",
"@remnawave/xtls-sdk-nestjs": "0.6.1",
"compression": "^1.8.1",
"consola": "^3.4.2",
"enhanced-ms": "^4.2.0",
"helmet": "^8.3.0",
"json-colorizer": "^3.0.1",
"lmdb": "^3.5.6",
"morgan": "^1.11.0",
"nest-winston": "^1.10.2",
"nestjs-zod": "5.5.0",
"nftables-napi": "0.5.0",
"nice-grpc": "^2.1.16",
"node-object-hash": "^3.1.1",
"object-hash": "^3.0.0",
"p-map": "^7.0.6",
"p-retry": "^8.0.0",
"passport": "0.7.0",
"passport-jwt": "4.0.1",
"pretty-bytes": "^6.1.1",
"reflect-metadata": "0.2.2",
"rxjs": "7.8.2",
"semver": "^7.8.5",
"sockdestroy": "1.4.0",
"winston": "^3.19.0",
"zod": "4.4.3"
},
"devDependencies": {
"@nestjs/cli": "11.0.24",
"@nestjs/schematics": "11.1.0",
"@rspack/cli": "^2.1.7",
"@rspack/core": "^2.1.7",
"@rspack/dev-server": "^2.1.0",
"@types/compression": "^1.8.1",
"@types/express": "^5.0.6",
"@types/morgan": "^1.9.10",
"@types/node": ">= 24 < 25",
"@types/object-hash": "^3.0.6",
"@types/passport-jwt": "^4.0.1",
"@types/semver": "^7.7.1",
"cross-env": "^10.1.0",
"nf3": "^0.3.23",
"oxfmt": "^0.61.0",
"oxlint": "^1.76.0",
"run-script-webpack-plugin": "^0.2.3",
"ts-checker-rspack-plugin": "^1.6.0",
"typescript": "~5.9.3",
"webpack-node-externals": "^3.0.0"
}
}