-
Notifications
You must be signed in to change notification settings - Fork 10.4k
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.95 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
{
"name": "@open-design/web",
"version": "0.20.1",
"private": true,
"type": "module",
"exports": {
"./package.json": "./package.json",
"./sidecar": {
"types": "./dist/sidecar/index.d.ts",
"default": "./dist/sidecar/index.js"
}
},
"files": [
".next",
"!.next/cache",
"app",
"dist",
"next.config.ts",
"package.json",
"public",
"src"
],
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"build:sidecar": "tsc -p tsconfig.sidecar.json",
"typecheck": "tsc -b --noEmit",
"test": "vitest run -c vitest.config.ts --maxWorkers=2"
},
"dependencies": {
"@anthropic-ai/sdk": "0.32.1",
"@excalidraw/excalidraw": "0.18.1",
"@formkit/auto-animate": "0.9.0",
"@lexical/react": "0.36.2",
"@lexical/utils": "0.36.2",
"@open-design/components": "workspace:*",
"@open-design/contracts": "workspace:*",
"@open-design/host": "workspace:*",
"@open-design/platform": "workspace:*",
"@open-design/sidecar": "workspace:*",
"@open-design/sidecar-proto": "workspace:*",
"@xterm/addon-fit": "0.10.0",
"@xterm/xterm": "5.5.0",
"dompurify": "3.4.2",
"jspdf": "4.2.1",
"lexical": "0.36.2",
"lucide-react": "1.16.0",
"micromark": "4.0.2",
"micromark-extension-gfm": "3.0.0",
"motion": "12.40.0",
"next": "16.2.6",
"openai": "6.38.0",
"posthog-js": "1.374.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"shiki": "4.1.0",
"three": "0.185.1"
},
"devDependencies": {
"@tailwindcss/postcss": "4.3.0",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@types/jsdom": "28.0.3",
"@types/node": "20.19.39",
"@types/react": "18.3.28",
"@types/react-dom": "18.3.7",
"@types/three": "0.185.1",
"jsdom": "29.1.1",
"postcss": "8.5.15",
"tailwindcss": "4.3.0",
"typescript": "5.9.3",
"vitest": "4.1.6"
},
"engines": {
"node": "~24"
}
}