-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.76 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.76 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "markbook",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "本地 Markdown / 纯文本聚合阅读器:把一个文件夹或一个大文件里散落的文本,聚合成一本连续、可导航、可搜索、可导出的书;读为先,顺手可就地编辑与整理。纯本地、零上传。",
"license": "MIT",
"author": "rockbenben",
"homepage": "https://github.com/rockbenben/markbook#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/rockbenben/markbook.git"
},
"bugs": {
"url": "https://github.com/rockbenben/markbook/issues"
},
"keywords": [
"markdown",
"reader",
"editor",
"ebook",
"local-first",
"novel",
"documentation",
"epub",
"full-text-search",
"codemirror"
],
"bin": {
"markbook": "dist/server/index.js"
},
"engines": {
"node": ">=20.19"
},
"scripts": {
"dev:client": "vite",
"dev:server": "tsx watch server/index.ts",
"dev": "concurrently -k \"npm:dev:server\" \"npm:dev:client\"",
"build": "vite build && tsc -p tsconfig.server.json --noEmit && esbuild server/index.ts --bundle --platform=node --format=esm --packages=external --outfile=dist/server/index.js",
"build:static": "vite build --mode static",
"start": "node dist/server/index.js",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@ant-design/icons": "^6.3.2",
"@codemirror/commands": "^6.10.4",
"@codemirror/lang-markdown": "^6.5.1",
"@codemirror/search": "^6.7.1",
"@codemirror/state": "^6.7.1",
"@codemirror/view": "^6.43.6",
"@fastify/static": "^10.1.0",
"@fastify/websocket": "^11.3.0",
"antd": "^6.5.1",
"chokidar": "^5.0.0",
"codemirror": "^6.0.1",
"epub-gen-memory": "^1.1.2",
"fastify": "^5.10.0",
"flexsearch": "^0.8.212",
"github-slugger": "^2.0.0",
"open": "^11.0.0",
"picomatch": "^4.0.5",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-markdown": "^10.1.0",
"react-virtuoso": "^4.18.10",
"rehype-autolink-headings": "^7.1.0",
"rehype-highlight": "^7.0.2",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"unified": "^11.0.5",
"yaml": "^2.9.0",
"zustand": "^5.0.0"
},
"devDependencies": {
"@testing-library/react": "^16.3.0",
"@types/node": "^24.10.9",
"@types/picomatch": "^4.0.3",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"concurrently": "^10.0.3",
"esbuild": "^0.28.1",
"jsdom": "^29.1.1",
"tsx": "^4.23.1",
"typescript": "^7.0.2",
"vite": "^8.1.5",
"vite-plugin-pwa": "^1.3.0",
"vitest": "^4.1.10"
}
}