-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.27 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.27 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
{
"name": "@mattlenz/kb",
"version": "0.0.1",
"description": "Markdown wiki static site generator with Vite",
"license": "MIT",
"type": "module",
"bin": {
"kb": "./dist/cli/index.js"
},
"exports": {
".": {
"types": "./dist/core/index.d.ts",
"default": "./dist/core/index.js"
},
"./vite": {
"types": "./dist/vite/index.d.ts",
"default": "./dist/vite/index.js"
}
},
"scripts": {
"typecheck": "tsc",
"prepare": "npm run build",
"build": "rm -rf dist && tsc -p tsconfig.build.json && chmod +x dist/cli/index.js",
"dev": "npm run build && kb dev",
"build:docs": "npm run build && kb build"
},
"dependencies": {
"@preact/signals": "^2.0.0",
"@shikijs/rehype": "^4.0.2",
"gray-matter": "^4.0.3",
"hast-util-to-jsx-runtime": "^2.3.6",
"mermaid": "^10.9.5",
"preact": "^10.25.0",
"preact-render-to-string": "^6.5.0",
"rehype-slug": "^6.0.0",
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"remark-heading-id": "^1.0.1",
"remark-rehype": "^11.1.2",
"shiki": "^4.0.2",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vite": "^8.0.3"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@types/remark-heading-id": "^1.0.0",
"playwright": "^1.59.1"
}
}