-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 804 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 804 Bytes
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
{
"name": "crosspoint-sync",
"version": "0.1.0",
"description": "Lightweight KOSync-compatible sync server for CrossPoint / CrossInk e-readers: reading progress, bookmarks, clippings, and reading stats.",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"build": "tsc -p tsconfig.json",
"test": "vitest run",
"test:watch": "vitest"
},
"engines": {
"node": ">=22.13"
},
"dependencies": {
"@hono/node-server": "^1.13.7",
"@xmldom/xmldom": "^0.9.12",
"hono": "^4.6.16",
"yauzl": "^3.4.0"
},
"devDependencies": {
"@types/node": "^22.10.5",
"@types/yauzl": "^3.4.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^3.2.7"
}
}