-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.17 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
{
"name": "foliomd",
"version": "0.1.0",
"description": "A zero-config documentation site builder powered by Astro, MDX, and Tailwind CSS.",
"author": "Atour Mousavi Gourabi",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/amousavigourabi/folio.md.git"
},
"homepage": "https://foliopages.dev",
"bugs": {
"url": "https://github.com/amousavigourabi/folio.md/issues"
},
"bin": {
"folio": "./bin/folio.ts"
},
"exports": {
"./types": "./folio.config.ts"
},
"scripts": {
"dev": "astro dev",
"build": "bun run validate-links && astro build",
"preview": "astro preview",
"validate-links": "bun scripts/validate-links.ts",
"prose": "bun scripts/prose.ts",
"lint": "biome check src scripts folio.config.ts",
"lint:fix": "biome check --write src scripts folio.config.ts",
"check": "bun run lint && tsc",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"postinstall": "lefthook install"
},
"dependencies": {
"@astrojs/mdx": "^7.0.0",
"@astrojs/react": "^6.0.1",
"@panzoom/panzoom": "^4.6.2",
"@tailwindcss/vite": "^4.3.2",
"astro": "^7.0.6",
"fuse.js": "^7.4.2",
"hast-util-to-string": "^3.0.1",
"lucide-react": "^1.21.0",
"playwright": "^1.61.1",
"react": "19.2.7",
"react-dom": "19.2.7",
"rehype-autolink-headings": "^7.1.0",
"rehype-mermaid": "^3.0.0",
"rehype-pretty-code": "^0.14.3",
"remark-directive": "^4.0.0",
"remark-gfm": "^4.0.1",
"satori": "^0.26.0",
"sharp": "^0.35.3",
"shiki": "^4.2.0"
},
"devDependencies": {
"@biomejs/biome": "^2.5.1",
"@types/node": "^26.1.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/coverage-v8": "^4.1.9",
"globby": "^16.2.0",
"lefthook": "^2.1.10",
"remark-parse": "^11.0.0",
"tailwindcss": "^4",
"tsx": "^4.22.4",
"typescript": "^5",
"unified": "^11.0.5",
"unist-util-visit": "^5.1.0",
"vitest": "^4.1.9"
},
"overrides": {
"@vitejs/plugin-react": "^6.0.3"
},
"ignoreScripts": [
"sharp",
"unrs-resolver"
],
"trustedDependencies": [
"sharp",
"unrs-resolver"
]
}