-
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.16 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 3.16 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "userinterface-wiki",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "concurrently \"pnpm:dev:*\" --prefix-colors \"cyan,magenta\"",
"dev:next": "next dev",
"dev:playgrounds": "pnpm generate playgrounds --watch",
"dev:demos": "pnpm generate demos --watch",
"build": "pnpm generate icons opengraph playgrounds demos && next build",
"build:icons": "pnpm generate icons",
"build:opengraph": "pnpm generate opengraph",
"build:playgrounds": "pnpm generate playgrounds",
"build:demos": "pnpm generate demos",
"build:next": "next build",
"start": "next start",
"lint": "biome check --fix --unsafe .",
"postinstall": "fumadocs-mdx",
"generate": "tsx scripts/generate.ts",
"prepare": "husky"
},
"dependencies": {
"@base-ui/react": "1.2.0",
"@codesandbox/sandpack-react": "^2.20.0",
"@elevenlabs/elevenlabs-js": "^2.37.0",
"@floating-ui/react": "^0.27.18",
"@radix-ui/colors": "^3.0.0",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.5.0",
"@resvg/resvg-js": "^2.6.2",
"@tanstack/react-db": "^0.1.74",
"@tanstack/react-query": "^5.90.21",
"@types/chroma-js": "^3.1.2",
"@types/color-hash": "^2.0.0",
"@types/mdx": "^2.0.13",
"@types/three": "^0.183.1",
"@vercel/analytics": "^1.6.1",
"@vercel/blob": "^2.3.0",
"@vercel/speed-insights": "^1.3.1",
"agentation": "^2.2.1",
"ahooks": "^3.9.6",
"calligraph": "^1.3.0",
"chroma-js": "^3.2.0",
"chrono-node": "^2.9.0",
"clsx": "^2.1.1",
"color-hash": "^2.0.2",
"frimousse": "^0.3.0",
"fumadocs-core": "^16.6.7",
"fumadocs-mdx": "^14.2.8",
"fumadocs-ui": "^16.6.7",
"fuse.js": "^7.1.0",
"html-to-image": "^1.11.13",
"immer": "^11.1.4",
"lenis": "^1.3.17",
"mdast-util-to-string": "^4.0.0",
"motion": "^12.34.3",
"next": "16.1.6",
"next-themes": "^0.4.6",
"nuqs": "^2.8.9",
"pantone-tcx": "^2.2.4",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-hotkeys-hook": "^5.2.4",
"react-use-measure": "^2.1.7",
"remark-frontmatter": "^5.0.0",
"remark-mdx": "^3.1.1",
"remark-parse": "^11.0.0",
"snd-lib": "^1.2.4",
"three": "^0.183.1",
"title": "^4.0.1",
"unified": "^11.0.5",
"unist-util-visit": "^5.1.0",
"unist-util-visit-parents": "^6.0.2",
"usehooks-ts": "^3.1.1",
"zod": "^4.3.6",
"zustand": "^5.0.11"
},
"devDependencies": {
"@babel/template": "7.28.6",
"@biomejs/biome": "2.4.4",
"@clack/prompts": "^1.0.1",
"@types/hast": "^3.0.4",
"@types/node": "^25.3.2",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"autoprefixer": "^10.4.27",
"babel-plugin-react-compiler": "^1.0.0",
"baseline-browser-mapping": "^2.10.0",
"concurrently": "^9.2.1",
"dotenv": "^17.3.1",
"husky": "^9.1.7",
"picocolors": "^1.1.1",
"raw-loader": "^4.0.2",
"satori": "^0.19.2",
"sharp": "^0.34.5",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@types/react"
]
},
"onlyBuiltDependencies": [
"esbuild",
"sharp"
]
}
}