-
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.75 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.75 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": "nteract-elements",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@10.12.1",
"scripts": {
"build": "pnpm build:isolated && shadcn build && cp registry.json public/r/registry.json && next build",
"build:isolated": "vite build --config registry/isolated-renderer/vite.config.ts",
"dev": "next dev",
"start": "next start",
"test": "vitest",
"test:run": "vitest run",
"test:integration": "bash integration-tests/test-registry.sh",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"types:check": "fumadocs-mdx && next typegen && tsc --noEmit",
"postinstall": "fumadocs-mdx",
"lint": "biome check",
"format": "biome format --write",
"registry:build": "shadcn build"
},
"dependencies": {
"@codemirror/autocomplete": "^6.20.0",
"@codemirror/commands": "^6.10.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-javascript": "^6.2.4",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lang-sql": "^6.10.0",
"@codemirror/language": "^6.12.1",
"@codemirror/lint": "^6.9.3",
"@codemirror/state": "^6.5.4",
"@codemirror/view": "^6.39.12",
"@radix-ui/react-slot": "^1.2.4",
"@uiw/codemirror-theme-github": "^4.25.4",
"@uiw/react-codemirror": "^4.25.4",
"anser": "^2.3.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"escape-carriage": "^1.3.1",
"fumadocs-core": "16.5.0",
"fumadocs-mdx": "14.2.6",
"fumadocs-ui": "16.5.0",
"katex": "^0.16.11",
"lucide-react": "^0.563.0",
"next": "16.1.6",
"radix-ui": "^1.4.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-markdown": "^9.0.1",
"react-syntax-highlighter": "^15.6.1",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"tailwind-merge": "^3.4.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/vite": "^4.1.18",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/mdx": "^2.0.13",
"@types/node": "^25.1.0",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/serve-handler": "^6.1.4",
"@vitejs/plugin-react": "^4.5.2",
"jsdom": "^28.1.0",
"postcss": "^8.5.6",
"serve-handler": "^6.1.6",
"shadcn": "^3.8.5",
"tailwindcss": "^4.1.18",
"tsx": "^4.19.2",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"vite": "^6.3.5",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=18"
}
}