-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.52 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.52 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
{
"name": "@logux/server",
"version": "0.14.0",
"description": "Build own Logux server",
"keywords": [
"collaborative",
"crdt",
"distributed systems",
"event sourcing",
"framework",
"logux",
"proxy",
"server",
"websocket"
],
"homepage": "https://logux.org/",
"license": "MIT",
"author": "Andrey Sitnik <andrey@sitnik.es>",
"repository": "logux/server",
"type": "module",
"types": "./index.d.ts",
"exports": {
".": "./index.js",
"./package.json": "./package.json"
},
"scripts": {
"test:lint": "oxlint",
"test:types": "check-dts",
"test:coverage": "vitest run --coverage",
"test": "pnpm run /^test:/"
},
"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.9",
"tinyglobby": "^0.2.16",
"url-pattern": "^1.0.3",
"ws": "^8.20.0"
},
"devDependencies": {
"@logux/oxc-configs": "^0.3.4",
"@types/cross-spawn": "^6.0.6",
"@types/node": "^25.6.0",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^4.1.4",
"actions-up": "^1.14.0",
"check-dts": "^1.0.0",
"clean-publish": "^6.0.5",
"cross-spawn": "^7.0.6",
"eslint-plugin-prefer-let": "^4.2.2",
"nanospy": "^1.0.0",
"oxlint": "^1.60.0",
"oxlint-tsgolint": "^0.21.1",
"print-snapshots": "^0.4.2",
"typescript": "^6.0.2",
"vite": "^8.0.8",
"vitest": "^4.1.4"
},
"engines": {
"node": "^22.0.0 || >=24.0.0"
}
}