-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.69 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.69 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
{
"name": "vellum",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "A Microsoft Open Publishing System-style multi-repo docs platform on Cloudflare Workers, with full VitePress markdown support and a FluentUI v9 shell.",
"scripts": {
"dev": "bun run build:client && wrangler dev",
"build": "bun run build:client && bun run build:worker",
"build:client": "vite build",
"build:worker": "wrangler deploy --dry-run --outdir=dist/worker",
"deploy": "bun run build:client && wrangler deploy",
"typecheck": "tsc --noEmit",
"gen:schema": "bun scripts/gen-site-schema.ts",
"drop:cache": "bun scripts/drop-kv-cache.ts",
"format": "prettier --write \"src/**/*.{ts,tsx,js,json,md}\" \"scripts/**/*.ts\" \"*.{json,jsonc,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,json,md}\" \"scripts/**/*.ts\" \"*.{json,jsonc,md}\"",
"lint": "eslint \"src/**/*.{ts,tsx}\" \"scripts/**/*.ts\"",
"lint:fix": "eslint --fix \"src/**/*.{ts,tsx}\" \"scripts/**/*.ts\"",
"clean": "rm -rf dist .wrangler/tmp"
},
"dependencies": {
"@fluentui/react-components": "^9.73.8",
"@fluentui/react-icons": "^2.0.327",
"@griffel/core": "^1.21.2",
"@griffel/react": "^1.7.4",
"@shikijs/transformers": "^4.1.0",
"cldr-core": "^48.2.0",
"countries-list": "^3.3.0",
"gray-matter": "^4.0.3",
"html-react-parser": "^6.1.1",
"iso-639-1": "^3.1.5",
"markdown-it": "^14.1.1",
"markdown-it-anchor": "^9.2.0",
"markdown-it-attrs": "^4.5.0",
"markdown-it-container": "^4.0.0",
"markdown-it-emoji": "^3.0.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-mathjax3": "^4.3.2",
"markdown-it-task-lists": "^2.1.1",
"mermaid": "^11.15.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"shiki": "^1.29.2",
"vue": "^3.5.34",
"vue3-sfc-loader": "^0.9.5"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260521.1",
"@eslint/js": "^10.0.1",
"@types/markdown-it": "^14.1.2",
"@types/markdown-it-container": "^2.0.11",
"@types/markdown-it-emoji": "^3.0.1",
"@types/markdown-it-footnote": "^3.0.4",
"@types/node": "^22.19.19",
"@types/react": "^18.3.29",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^4.7.0",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.6.0",
"prettier": "^3.8.3",
"ts-json-schema-generator": "^2.9.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.4",
"vite": "^6.4.2",
"wrangler": "^4.93.1"
},
"engines": {
"bun": ">=1.1.0"
}
}