-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.41 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.41 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
{
"name": "deepwebide-yjs",
"version": "1.0.0",
"type": "module",
"main": "dist/server.js",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"lint": "eslint src --ext .ts --fix",
"lint:check": "eslint src --ext .ts",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist",
"prebuild": "pnpm clean",
"test": "echo \"Tests will be added later\"",
"health": "curl -f http://localhost:1234/health || exit 1"
},
"keywords": [
"yjs",
"collaboration",
"websocket",
"real-time",
"code-editor"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"dotenv": "^17.2.1",
"ws": "^8.18.3",
"y-websocket": "^3.0.0",
"yjs": "^13.6.27"
},
"devDependencies": {
"@types/node": "^24.0.14",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^8.37.0",
"@typescript-eslint/parser": "^8.37.0",
"eslint": "^9.30.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"prettier": "^3.6.2",
"ts-patch": "^3.3.0",
"ts-transformer-paths": "1.0.0-alpha.1",
"tsx": "^4.19.2",
"typescript": "5.5.4"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@10.13.1+sha512.37ebf1a5c7a30d5fabe0c5df44ee8da4c965ca0c5af3dbab28c3a1681b70a256218d05c81c9c0dcf767ef6b8551eb5b960042b9ed4300c59242336377e01cfad"
}