-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
177 lines (177 loc) · 4.97 KB
/
package.json
File metadata and controls
177 lines (177 loc) · 4.97 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
{
"name": "@embeddr/react-ui",
"version": "0.2.0-alpha.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/embeddr-net/embeddr-react-ui.git"
},
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"test": "vitest run",
"lint": "eslint",
"lint:fix": "eslint --fix",
"format": "prettier . --write",
"format:check": "prettier . --check",
"typecheck": "tsc --noEmit"
},
"keywords": [],
"type": "module",
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.26.2",
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"peerDependenciesMeta": {
"three": {
"optional": true
},
"@react-three/fiber": {
"optional": true
},
"@react-three/drei": {
"optional": true
}
},
"optionalDependencies": {
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.4.2",
"three": "^0.182.0"
},
"devDependencies": {
"@react-three/fiber": "^9.4.2",
"@tanstack/eslint-config": "^0.3.4",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/three": "^0.182.0",
"@vitejs/plugin-react": "^5.1.2",
"eslint": "^9.39.2",
"eslint-plugin-react-hooks": "^7.0.1",
"jsdom": "^27.4.0",
"prettier": "^3.6.2",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"three": "^0.182.0",
"typescript": "^5.9.3",
"vite": "^7.3.0",
"vitest": "^3.2.4"
},
"dependencies": {
"@mdx-js/mdx": "^3.1.1",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-aspect-ratio": "^1.1.8",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-menubar": "^1.1.16",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slider": "^1.3.6",
"@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",
"@radix-ui/react-visually-hidden": "^1.2.4",
"@tabler/icons-react": "^3.36.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.562.0",
"next-themes": "^0.4.6",
"react-resizable-panels": "^4.0.15",
"recharts": "2.15.4",
"remark-gfm": "^4.0.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./components": {
"types": "./dist/components/index.d.ts",
"import": "./dist/components/index.js"
},
"./components/embeddr": {
"types": "./dist/components/embeddr/index.d.ts",
"import": "./dist/components/embeddr/index.js"
},
"./components/visualization": {
"types": "./dist/components/visualization/index.d.ts",
"import": "./dist/components/visualization/index.js"
},
"./ui": {
"types": "./dist/components/ui/index.d.ts",
"import": "./dist/components/ui/index.js"
},
"./components/ui": {
"types": "./dist/components/ui/index.d.ts",
"import": "./dist/components/ui/index.js"
},
"./types": {
"types": "./dist/types/index.d.ts",
"import": "./dist/types/index.js"
},
"./context": {
"types": "./dist/context/index.d.ts",
"import": "./dist/context/index.js"
},
"./hooks": {
"types": "./dist/hooks/index.d.ts",
"import": "./dist/hooks/index.js"
},
"./hooks/*": {
"types": "./dist/hooks/*.d.ts",
"import": "./dist/hooks/*.js"
},
"./providers": {
"types": "./dist/providers/index.d.ts",
"import": "./dist/providers/index.js"
},
"./providers/*": {
"types": "./dist/providers/*.d.ts",
"import": "./dist/providers/*.js"
},
"./lib/utils": {
"types": "./dist/lib/utils.d.ts",
"import": "./dist/lib/utils.js"
},
"./lib/dnd": {
"types": "./dist/lib/dnd.d.ts",
"import": "./dist/lib/dnd.js"
},
"./lib/reactive": {
"types": "./dist/lib/reactive.d.ts",
"import": "./dist/lib/reactive.js"
},
"./lib/renderables": {
"types": "./dist/lib/renderables.d.ts",
"import": "./dist/lib/renderables.js"
},
"./lib/artifact-graph": {
"types": "./dist/lib/artifact-graph.d.ts",
"import": "./dist/lib/artifact-graph.js"
},
"./lib/mdx": {
"types": "./dist/lib/mdx/index.d.ts",
"import": "./dist/lib/mdx/index.js"
}
}
}