-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpackage.json
More file actions
199 lines (199 loc) · 7.54 KB
/
Copy pathpackage.json
File metadata and controls
199 lines (199 loc) · 7.54 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
{
"name": "vmark",
"private": true,
"version": "0.8.28",
"license": "ISC",
"description": "The plain-text workspace where humans and AI collaborate",
"type": "module",
"scripts": {
"prepare": "node scripts/setup-local-git.mjs",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "node scripts/tauri-wrapper.mjs",
"tauri:dev": "node scripts/tauri-wrapper.mjs dev --config src-tauri/tauri.dev.conf.json",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"bench": "vitest bench src/bench/",
"bench:editor": "vitest bench src/bench/editor.bench.ts",
"bench:markdown": "vitest bench src/bench/markdown.bench.ts",
"perf:largefile:gen": "node scripts/gen-large-file-corpus.mjs",
"perf:largefile": "node scripts/measure-open-latency.mjs --dir tmp/large-file-corpus",
"e2e:smoke": "node e2e/smoke.mjs",
"e2e:journeys": "node e2e/run-journeys.mjs",
"size": "size-limit",
"lint:eager": "node scripts/check-eager-chunks.mjs",
"lint:file-size": "node scripts/check-file-size.mjs",
"lint:barrels": "node scripts/check-index-barrels.mjs",
"check:cross": "bash scripts/check-cross-target.sh",
"size:why": "size-limit --why",
"lint": "eslint src",
"lint:selection-styles": "node scripts/check-selection-styles.mjs",
"lint:design-tokens": "node scripts/check-design-tokens.mjs",
"lint:emdash": "node scripts/check-emdash-spacing.mjs",
"lint:deps": "depcruise src --config .dependency-cruiser.cjs",
"lint:console": "bash scripts/lint-console.sh",
"lint:i18n": "tsx scripts/check-i18n-keys.ts",
"lint:themes": "bash scripts/check-theme-names.sh",
"extract-menu-ids": "tsx scripts/extract-menu-ids.ts",
"knip": "knip",
"knip:files": "knip --include files,dependencies",
"mutation:ts": "stryker run",
"test:sidecar": "pnpm --dir vmark-mcp-server test",
"test:content-server": "pnpm --dir vmark-content-server build && pnpm --dir vmark-content-server smoke && pnpm --dir vmark-content-server test:coverage",
"check:all": "pnpm lint && pnpm lint:console && pnpm lint:selection-styles && pnpm lint:design-tokens && pnpm lint:emdash && pnpm lint:deps && pnpm lint:i18n && pnpm lint:themes && pnpm lint:file-size && pnpm lint:barrels && pnpm knip && pnpm test:coverage && pnpm test:sidecar && pnpm test:content-server && pnpm build && pnpm lint:eager && pnpm size"
},
"dependencies": {
"@actions/languageservice": "0.3.58",
"@actions/workflow-parser": "0.3.58",
"@codemirror/autocomplete": "^6.20.3",
"@codemirror/commands": "^6.10.4",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-go": "^6.0.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lang-rust": "^6.0.2",
"@codemirror/lang-xml": "^6.1.0",
"@codemirror/lang-yaml": "^6.1.3",
"@codemirror/language": "^6.12.4",
"@codemirror/language-data": "^6.5.2",
"@codemirror/legacy-modes": "^6.5.3",
"@codemirror/lint": "^6.9.7",
"@codemirror/search": "^6.7.1",
"@codemirror/state": "^6.7.1",
"@codemirror/view": "^6.43.6",
"@dagrejs/dagre": "^3.0.0",
"@joplin/turndown-plugin-gfm": "^1.0.67",
"@lezer/highlight": "^1.2.3",
"@panzoom/panzoom": "^4.6.2",
"@tauri-apps/api": "^2.11.1",
"@tauri-apps/plugin-clipboard-manager": "^2.3.2",
"@tauri-apps/plugin-dialog": "^2.7.1",
"@tauri-apps/plugin-fs": "^2.5.1",
"@tauri-apps/plugin-log": "^2.8.0",
"@tauri-apps/plugin-notification": "^2.3.3",
"@tauri-apps/plugin-opener": "^2.5.4",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-store": "^2.4.3",
"@tauri-apps/plugin-updater": "^2.10.1",
"@tiptap/core": "^3.27.2",
"@tiptap/extension-blockquote": "^3.27.2",
"@tiptap/extension-bullet-list": "^3.27.2",
"@tiptap/extension-code-block-lowlight": "^3.27.2",
"@tiptap/extension-heading": "^3.27.2",
"@tiptap/extension-horizontal-rule": "^3.27.2",
"@tiptap/extension-image": "^3.27.2",
"@tiptap/extension-link": "^3.27.2",
"@tiptap/extension-ordered-list": "^3.27.2",
"@tiptap/extension-paragraph": "^3.27.2",
"@tiptap/extension-table": "^3.27.2",
"@tiptap/extension-table-row": "^3.27.2",
"@tiptap/pm": "^3.27.2",
"@tiptap/react": "^3.27.2",
"@tiptap/starter-kit": "^3.27.2",
"@viz-js/viz": "^3.28.0",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-search": "^0.16.0",
"@xterm/addon-unicode11": "^0.9.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/addon-webgl": "^0.19.0",
"@xterm/xterm": "^6.0.0",
"@xyflow/react": "12.11.2",
"alfaaz": "^1.1.0",
"codemirror-lang-mermaid": "0.5.0",
"dompurify": "^3.4.11",
"highlight.js": "^11.11.1",
"html-to-image": "1.11.13",
"i18next": "^26.3.4",
"i18next-resources-to-backend": "^1.2.1",
"katex": "^0.17.0",
"lowlight": "^3.3.0",
"lucide-react": "^1.23.0",
"markmap-common": "^0.18.9",
"markmap-lib": "^0.18.12",
"markmap-view": "^0.18.12",
"mdast-util-find-and-replace": "^3.0.2",
"mermaid": "^11.16.0",
"react": "^19.2.7",
"react-arborist": "^3.13.2",
"react-dom": "^19.2.7",
"react-i18next": "^17.0.8",
"react-json-view-lite": "^2.5.0",
"react-router-dom": "^7.18.1",
"remark-breaks": "^4.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"smol-toml": "^1.7.0",
"sonner": "^2.0.7",
"turndown": "^7.2.4",
"unified": "^11.0.5",
"unist-util-visit": "^5.1.0",
"vscode-languageserver-textdocument": "^1.0.12",
"vscode-languageserver-types": "^3.18.0",
"yaml": "2.9.0",
"zustand": "^5.0.14"
},
"pnpm": {
"overrides": {
"tar": ">=7.5.11",
"@modelcontextprotocol/sdk": ">=1.27.1",
"hono": ">=4.12.7",
"@hono/node-server": ">=1.19.10",
"express-rate-limit": ">=8.2.2",
"lodash": ">=4.18.0",
"lodash-es": ">=4.18.0",
"typescript-eslint>minimatch": ">=9.0.7",
"rollup": ">=4.59.0",
"flatted": ">=3.4.2",
"undici@<6.24.0": ">=6.24.0 <7",
"markdown-it": ">=14.1.1",
"@modelcontextprotocol/sdk>ajv": ">=8.18.0",
"dompurify": ">=3.3.2",
"qs": ">=6.14.2",
"picomatch": ">=4.0.4",
"path-to-regexp": ">=8.4.0"
}
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@hypothesi/tauri-mcp-server": "^0.12.0",
"@size-limit/file": "^12.1.0",
"@stryker-mutator/core": "9.6.1",
"@stryker-mutator/vitest-runner": "9.6.1",
"@tailwindcss/vite": "^4.3.2",
"@tauri-apps/cli": "^2.11.4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/mdast": "^4.0.4",
"@types/node": "^26.1.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/turndown": "^5.0.6",
"@vitejs/plugin-react": "^6.0.3",
"@vitest/coverage-v8": "^4.1.10",
"dependency-cruiser": "^18.0.0",
"eslint": "^10.6.0",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.7.0",
"jsdom": "^29.1.1",
"knip": "6.24.0",
"markdownlint-cli2": "^0.23.0",
"mdast-util-math": "^3.0.0",
"size-limit": "^12.1.0",
"tailwindcss": "^4.3.2",
"tsx": "^4.23.0",
"typescript": "~6.0.3",
"typescript-eslint": "^8.63.0",
"vite": "^8.1.3",
"vitest": "^4.1.10",
"vitest-axe": "0.1.0"
}
}