-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.72 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.72 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
{
"name": "@logux/server",
"version": "0.14.0",
"description": "Build own Logux server",
"keywords": [
"logux",
"server",
"framework",
"websocket",
"proxy",
"crdt",
"event sourcing",
"distributed systems",
"collaborative"
],
"scripts": {
"test:lint": "eslint .",
"test:types": "check-dts",
"test:coverage": "vitest run --coverage",
"test": "pnpm run /^test:/"
},
"author": "Andrey Sitnik <andrey@sitnik.ru>",
"license": "MIT",
"homepage": "https://logux.org/",
"repository": "logux/server",
"engines": {
"node": "^22.0.0 || >=24.0.0"
},
"type": "module",
"types": "./index.d.ts",
"exports": {
".": "./index.js",
"./package.json": "./package.json"
},
"dependencies": {
"@logux/actions": "^0.5.0",
"@logux/core": "^0.10.0",
"cookie": "^1.1.1",
"fastq": "^1.20.1",
"nanoevents": "^9.1.0",
"nanoid": "^5.1.6",
"tinyglobby": "^0.2.15",
"url-pattern": "^1.0.3",
"ws": "^8.19.0"
},
"devDependencies": {
"@logux/eslint-config": "^57.0.2",
"@types/cross-spawn": "^6.0.6",
"@types/node": "^25.3.5",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@vitest/coverage-v8": "^4.0.18",
"actions-up": "^1.12.0",
"check-dts": "^0.9.0",
"clean-publish": "^6.0.3",
"cross-spawn": "^7.0.6",
"eslint": "^10.0.2",
"nanospy": "^1.0.0",
"print-snapshots": "^0.4.2",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"prettier": {
"arrowParens": "avoid",
"jsxSingleQuote": false,
"quoteProps": "consistent",
"semi": false,
"singleQuote": true,
"trailingComma": "none"
}
}