-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.47 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.47 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
{
"name": "@contember/bindx-ui",
"version": "0.1.23",
"type": "module",
"exports": {
".": "./src/index.ts",
"./vite-plugin": "./src/vite-plugin.ts",
"./utils": "./src/utils/index.ts",
"./_internal/*": "./src/*"
},
"scripts": {
"build": "vite build",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@contember/bindx": "workspace:*",
"@contember/bindx-react": "workspace:*",
"@contember/bindx-dataview": "workspace:*",
"@contember/bindx-form": "workspace:*",
"@contember/bindx-repeater": "workspace:*",
"@contember/bindx-uploader": "workspace:*",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-popover": "^1.1.6",
"@radix-ui/react-progress": "^1.1.4",
"@radix-ui/react-slot": "^1.2.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.511.0",
"tailwind-merge": "^3.3.1"
},
"peerDependencies": {
"react": ">=18.0.0",
"vite": ">=5.0.0"
},
"peerDependenciesMeta": {
"vite": {
"optional": true
}
},
"devDependencies": {
"@types/react": "^19.1.8",
"typescript": "^5.8.3",
"vite": "^7.0.4"
},
"repository": {
"type": "git",
"url": "https://github.com/contember/bindx.git",
"directory": "packages/bindx-ui"
},
"license": "MIT",
"bin": {
"bindx-ui": "./dist/cli/cli.js"
},
"imports": {
"#bindx-ui/*": "./src/*"
}
}