-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 839 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 839 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
32
33
{
"name": "dogalog",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"docs:html": "node scripts/build-docs.mjs"
},
"dependencies": {
"@codemirror/autocomplete": "^6.18.0",
"@codemirror/commands": "^6.6.1",
"@codemirror/language": "^6.10.4",
"@codemirror/search": "^6.5.6",
"@codemirror/state": "^6.4.1",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.34.1"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.0.15",
"@vitest/ui": "^4.0.15",
"jsdom": "^27.3.0",
"marked": "^9.1.6",
"vite": "^7.2.7",
"vite-plugin-pwa": "^1.2.0",
"vitest": "^4.0.15"
}
}