-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.39 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
83
84
85
86
87
88
{
"name": "@rivet-dev/docs-theme",
"version": "0.3.1",
"description": "Shared Astro docs framework for Rivet OSS projects (copied 1:1 from rivet.dev's docs platform).",
"license": "MIT",
"type": "module",
"exports": {
".": "./src/index.mjs",
"./layouts/*": "./src/layouts/*",
"./components/*": "./src/components/*",
"./mdx/remark": "./dist/mdx/remark.js",
"./mdx/rehype": "./dist/mdx/rehype.js",
"./integrations/generate-routes": "./dist/integrations/generate-routes.js",
"./lib/*": "./src/lib/*",
"./sitemap": "./src/lib/sitemap.ts",
"./styles/*": "./src/styles/*",
"./tailwind-preset": "./tailwind-preset.mjs",
"./scripts/index-docs": "./scripts/index-docs.mjs"
},
"bin": {
"docs-theme-index": "./scripts/index-docs.mjs"
},
"files": [
"src",
"dist",
"fonts",
"assets",
"scripts",
"tailwind-preset.mjs",
"LICENSE",
"README.md"
],
"scripts": {
"build": "node build.mjs",
"index-docs": "node scripts/index-docs.mjs"
},
"devDependencies": {
"esbuild": "^0.25.9"
},
"dependencies": {
"@rivet-gg/components": "file:./vendor/components",
"@rivet-gg/icons": "file:./vendor/icons",
"@astrojs/mdx": "^4.0.2",
"@astrojs/react": "^4.1.2",
"@astrojs/sitemap": "^3.2.1",
"@fortawesome/fontawesome-svg-core": "^7.1.0",
"@fortawesome/free-brands-svg-icons": "^7.1.0",
"@fortawesome/free-solid-svg-icons": "^7.1.0",
"@fortawesome/react-fontawesome": "^3.1.0",
"@headlessui/react": "^2.2.9",
"@shikijs/transformers": "^3.15.0",
"@sindresorhus/slugify": "^3.0.0",
"acorn": "^8.15.0",
"clsx": "^2.1.1",
"dedent": "^1.7.0",
"esast-util-from-js": "^2.0.1",
"escape-html": "^1.0.3",
"estree-util-to-js": "^2.0.0",
"fast-glob": "^3.3.3",
"framer-motion": "^12.23.24",
"fuse.js": "^7.1.0",
"lodash": "^4.17.21",
"lucide-react": "^0.439.0",
"react-markdown": "^10.1.0",
"mdast-util-to-string": "^4.0.0",
"mdx-annotations": "^0.1.4",
"mermaid": "^11.12.2",
"playwright": "^1.57.0",
"posthog-js": "^1.297.0",
"rehype-mermaid": "^3.0.0",
"rehype-parse": "^9.0.1",
"remark-gfm": "^4.0.1",
"shiki": "^3.15.0",
"tm-themes": "^1.10.12",
"typesense": "^2.1.0",
"unified": "^11.0.5",
"unist-util-filter": "^5.0.1",
"unist-util-visit": "^5.0.0",
"zustand": "^5.0.8",
"tailwindcss": "^3.4.17",
"@tailwindcss/typography": "^0.5.15"
},
"peerDependencies": {
"astro": ">=5.0.0",
"react": ">=19.0.0",
"react-dom": ">=19.0.0"
}
}