-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.46 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 3.46 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
111
{
"name": "@cofoundy/ui",
"version": "0.6.1",
"private": true,
"license": "MIT",
"type": "module",
"main": "./src/index.ts",
"exports": {
".": "./src/index.ts",
"./styles": "./src/styles/index.css",
"./utils": "./src/utils/index.ts",
"./hero-shader": "./src/components/hero-shader/index.ts",
"./scripts/reveal-on-scroll": "./src/scripts/reveal-on-scroll.ts",
"./chat-sim": "./src/components/chat-sim/index.ts",
"./chat-sim/styles.css": "./src/components/chat-sim/styles.css",
"./chat-sim/element": "./src/components/chat-sim/element/index.ts",
"./iife": {
"import": "./dist/chat-widget.iife.js",
"require": "./dist/chat-widget.iife.js"
},
"./iife/styles": "./dist/chat-widget.css"
},
"peerDependencies": {
"@react-three/fiber": ">=8",
"@shadergradient/react": ">=2.4.0",
"next": ">=14",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"peerDependenciesMeta": {
"@shadergradient/react": {
"optional": true
},
"@react-three/fiber": {
"optional": true
},
"next": {
"optional": true
}
},
"optionalDependencies": {
"socket.io-client": "^4.7.5"
},
"dependencies": {
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@react-email/components": "^1.0.12",
"@react-email/render": "^2.0.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.0.0",
"lucide-react": "^0.562.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"zod": "^4.4.3",
"zustand": "^5.0.9"
},
"devDependencies": {
"@react-three/fiber": "^9.6.1",
"@shadergradient/react": "^2.4.20",
"@storybook/addon-essentials": "^8.6.14",
"@storybook/addon-interactions": "^8.6.14",
"@storybook/react": "^8.6.14",
"@storybook/react-vite": "^8.6.14",
"@storybook/test": "^8.6.14",
"@tailwindcss/vite": "^4.1.18",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.8.0",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^4.0.0",
"chromatic": "^13.3.5",
"jsdom": "^27.0.0",
"opentype.js": "^1.3.4",
"storybook": "^8.6.14",
"tailwindcss": "^4.1.18",
"terser": "^5.37.0",
"three": "^0.184.0",
"tsx": "^4.22.0",
"typescript": "^5",
"vite": "^6.4.1",
"vitest": "^4.0.0"
},
"scripts": {
"typecheck": "tsc --noEmit",
"lint": "eslint src/",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"build:iife": "vite build --config vite.config.iife.ts",
"build:iife:watch": "vite build --config vite.config.iife.ts --watch",
"capture-shader-poster": "node scripts/capture-shader-poster.mjs",
"gen:agents": "tsx scripts/gen-atelier-agents-md.ts",
"verify:agents": "tsx scripts/gen-atelier-agents-md.ts --check"
}
}