-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.91 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
{
"name": "@astryxdesign/docsite",
"version": "0.0.1",
"private": true,
"scripts": {
"build:theme": "astryx theme build src/themes/astryxTheme.ts --out src/themes/astryx.css",
"generate": "node scripts/check-workspace-build.mjs && pnpm build:theme && node scripts/generate-data.mjs && node scripts/generate-scope.mjs && node scripts/generate-playground-types.mjs && node scripts/copy-vendor.mjs",
"dev": "pnpm generate && next dev --webpack",
"build": "pnpm generate && next build --webpack",
"start": "next start",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"@modelcontextprotocol/sdk": "^1.30.0",
"@monaco-editor/react": "^4.8.0-rc.3",
"@stylexjs/stylex": "catalog:",
"@vercel/analytics": "^2.0.1",
"@vercel/speed-insights": "^2.0.0",
"@astryxdesign/charts": "*",
"@astryxdesign/cli": "*",
"@astryxdesign/core": "*",
"@astryxdesign/theme-butter": "*",
"@astryxdesign/theme-gothic": "*",
"@astryxdesign/theme-matcha": "*",
"@astryxdesign/theme-neutral": "*",
"@astryxdesign/theme-stone": "*",
"@astryxdesign/theme-y2k": "*",
"fflate": "^0.8.2",
"lucide-react": "^1.18.0",
"lz-string": "^1.5.0",
"mcp-handler": "^1.1.0",
"monaco-editor": "^0.55.1",
"next": "16.3.0-preview.5",
"prettier": "catalog:",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"zod": "^4.4.3"
},
"devDependencies": {
"@babel/parser": "^7.29.7",
"@babel/preset-react": "catalog:",
"@babel/preset-typescript": "catalog:",
"@stylexjs/babel-plugin": "catalog:",
"@stylexjs/postcss-plugin": "catalog:",
"@types/lz-string": "^1.5.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.5.2",
"typescript": "^6.0.3",
"vitest": "^4.1.9"
},
"browserslist": [
"last 1 Chrome version"
]
}