-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.44 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.44 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
{
"name": "frontdoc",
"version": "0.1.0",
"description": "CLI tool for managing Markdown document collections",
"type": "module",
"main": "src/main.ts",
"scripts": {
"dev": "bun run src/main.ts",
"test": "bun run web:build && bun test ./tests",
"lint": "biome check .",
"format": "biome format --write .",
"build": "bun run web:build && bun build --compile src/main.ts --outfile dist/frontdoc",
"web:dev": "vite --config webapp/vite.config.ts",
"web:build": "vite build --config webapp/vite.config.ts",
"web:typecheck": "vue-tsc --project webapp/tsconfig.json --noEmit",
"web:test:unit": "vitest --config webapp/vitest.config.ts run",
"web:test:e2e": "bunx playwright test --config webapp/playwright.config.cjs"
},
"dependencies": {
"@codemirror/autocomplete": "^6.20.0",
"@codemirror/commands": "^6.10.2",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/state": "^6.5.4",
"@codemirror/view": "^6.39.14",
"@inquirer/prompts": "^7.3.2",
"@primeuix/themes": "^2.0.3",
"commander": "^12.1.0",
"markdown-it": "^14.1.1",
"primeicons": "^7.0.0",
"primevue": "^4.5.4",
"ulidx": "^2.4.1",
"vue": "^3.5.28",
"vue-router": "^5.0.2",
"yaml": "^2.7.0"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/bun": "^1.2.4",
"@types/markdown-it": "^14.1.2",
"@vitejs/plugin-vue": "^6.0.4",
"@vue/test-utils": "^2.4.6",
"jsdom": "^28.0.0",
"vite": "^7.3.1",
"vitest": "^4.0.18",
"vue-tsc": "^3.2.4"
}
}