-
Notifications
You must be signed in to change notification settings - Fork 108
/
package.json
81 lines (81 loc) · 2.02 KB
/
package.json
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
{
"name": "@logux/server",
"version": "0.13.1",
"description": "Build own Logux server or make proxy between WebSocket and HTTP backend on any language",
"keywords": [
"logux",
"server",
"framework",
"websocket",
"proxy",
"crdt",
"event sourcing",
"distributed systems",
"collaborative"
],
"scripts": {
"test:lint": "eslint .",
"test:types": "check-dts",
"test": "vitest run --coverage && pnpm run /^test:/"
},
"author": "Andrey Sitnik <[email protected]>",
"license": "MIT",
"homepage": "https://logux.org/",
"repository": "logux/server",
"engines": {
"node": "^18.0.0 || ^20.0.0 || >=22.0.0"
},
"type": "module",
"types": "./index.d.ts",
"exports": {
".": "./index.js",
"./package.json": "./package.json"
},
"dependencies": {
"@logux/actions": "^0.4.0",
"@logux/core": "^0.9.0",
"JSONStream": "^1.3.5",
"cookie": "^0.7.1",
"dotenv": "^16.4.5",
"fast-glob": "^3.3.2",
"fastq": "^1.17.1",
"nanoevents": "^9.0.0",
"nanoid": "^5.0.7",
"netmask": "^2.0.2",
"node-fetch": "^3.3.2",
"picocolors": "^1.0.1",
"pino": "9.3.2",
"pino-abstract-transport": "^1.2.0",
"semver": "^7.6.3",
"strip-ansi": "^7.1.0",
"url-pattern": "^1.0.3",
"ws": "^8.18.0"
},
"devDependencies": {
"@logux/eslint-config": "^53.4.0",
"@types/cross-spawn": "^6.0.6",
"@types/node": "^22.5.0",
"@types/node-fetch": "^2.6.11",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"@vitest/coverage-v8": "^2.0.5",
"check-dts": "^0.8.2",
"clean-publish": "^5.0.0",
"cross-spawn": "^7.0.3",
"eslint": "^9.9.1",
"nanospy": "^1.0.0",
"print-snapshots": "^0.4.2",
"typescript": "^5.5.4",
"vite": "^5.4.2",
"vitest": "^2.0.5"
},
"prettier": {
"arrowParens": "avoid",
"jsxSingleQuote": false,
"quoteProps": "consistent",
"semi": false,
"singleQuote": true,
"trailingComma": "none"
}
}