-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1 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
{
"name": "webwordstar",
"version": "1.0.4",
"description": "A clean-room browser-based reimplementation of WordStar with real-time collaborative editing.",
"license": "AGPL-3.0-only",
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "concurrently -k -n vite,ws \"vite\" \"tsx watch server/index.ts\"",
"server": "tsx server/index.ts",
"build": "vite build",
"serve": "vite build && tsx server/index.ts",
"preview": "vite preview",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest",
"test:e2e": "playwright test"
},
"devDependencies": {
"@playwright/test": "^1.61.1",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^26.1.0",
"@types/pdfkit": "^0.17.6",
"@types/ws": "^8.18.1",
"concurrently": "^10.0.3",
"tsx": "^4.23.0",
"typescript": "^6.0.3",
"vite": "^8.1.3",
"vitest": "^4.1.9"
},
"dependencies": {
"better-sqlite3": "^12.11.1",
"pdfkit": "^0.19.1",
"ws": "^8.21.0"
}
}