shadcn-ui-react 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env +1 -0
- package/.gitattributes +2 -0
- package/LICENSE +21 -0
- package/README.md +39 -0
- package/lib/index.d.ts +651 -0
- package/lib/index.js +20113 -0
- package/package.json +95 -0
- package/tsconfig.json +24 -0
package/package.json
ADDED
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "shadcn-ui-react",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"private": false,
|
|
5
|
+
"author": "Blencm",
|
|
6
|
+
"description": "React UI library for ShadCN",
|
|
7
|
+
"main": "lib/index.js",
|
|
8
|
+
"types": "lib/index.d.ts",
|
|
9
|
+
"keywords": [
|
|
10
|
+
"react",
|
|
11
|
+
"react-component",
|
|
12
|
+
"shadcn",
|
|
13
|
+
"shadcn-ui",
|
|
14
|
+
"shadcn-ui-react"
|
|
15
|
+
],
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "git+https://github.com/blencm/shadcn-ui-react.git"
|
|
19
|
+
},
|
|
20
|
+
"license": "MIT",
|
|
21
|
+
"bugs": {
|
|
22
|
+
"url": "https://github.com/blencm/shadcn-ui-react/issues"
|
|
23
|
+
},
|
|
24
|
+
"homepage": "https://github.com/blencm/shadcn-ui-react#readme",
|
|
25
|
+
"scripts": {
|
|
26
|
+
"prod": "rimraf ./lib && cross-env NODE_ENV=production && tsup src/index.ts src/cli.ts --dts --outDir=lib",
|
|
27
|
+
"dev": "cross-env NODE_ENV=test",
|
|
28
|
+
"test": "cross-env NODE_ENV=test && jest",
|
|
29
|
+
"test:watch": "jest --watch"
|
|
30
|
+
},
|
|
31
|
+
"sideEffects": false,
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"@eslint/config-array": "^0.19.2",
|
|
34
|
+
"@eslint/object-schema": "^2.1.6",
|
|
35
|
+
"@hookform/resolvers": "^4.1.1",
|
|
36
|
+
"@radix-ui/react-accordion": "^1.2.3",
|
|
37
|
+
"@radix-ui/react-alert-dialog": "^1.1.6",
|
|
38
|
+
"@radix-ui/react-aspect-ratio": "^1.1.2",
|
|
39
|
+
"@radix-ui/react-avatar": "^1.1.3",
|
|
40
|
+
"@radix-ui/react-checkbox": "^1.1.4",
|
|
41
|
+
"@radix-ui/react-collapsible": "^1.1.3",
|
|
42
|
+
"@radix-ui/react-context-menu": "^2.2.6",
|
|
43
|
+
"@radix-ui/react-dialog": "^1.1.6",
|
|
44
|
+
"@radix-ui/react-dropdown-menu": "^2.1.6",
|
|
45
|
+
"@radix-ui/react-hover-card": "^1.1.6",
|
|
46
|
+
"@radix-ui/react-icons": "^1.3.2",
|
|
47
|
+
"@radix-ui/react-label": "^2.1.2",
|
|
48
|
+
"@radix-ui/react-menubar": "^1.1.6",
|
|
49
|
+
"@radix-ui/react-navigation-menu": "^1.2.5",
|
|
50
|
+
"@radix-ui/react-popover": "^1.1.6",
|
|
51
|
+
"@radix-ui/react-progress": "^1.1.2",
|
|
52
|
+
"@radix-ui/react-radio-group": "^1.2.3",
|
|
53
|
+
"@radix-ui/react-scroll-area": "^1.2.3",
|
|
54
|
+
"@radix-ui/react-select": "^2.1.6",
|
|
55
|
+
"@radix-ui/react-separator": "^1.1.2",
|
|
56
|
+
"@radix-ui/react-slider": "^1.2.3",
|
|
57
|
+
"@radix-ui/react-slot": "^1.1.2",
|
|
58
|
+
"@radix-ui/react-switch": "^1.1.3",
|
|
59
|
+
"@radix-ui/react-tabs": "^1.1.3",
|
|
60
|
+
"@radix-ui/react-toast": "^1.2.6",
|
|
61
|
+
"@radix-ui/react-toggle": "^1.1.2",
|
|
62
|
+
"@radix-ui/react-toggle-group": "^1.1.2",
|
|
63
|
+
"@radix-ui/react-tooltip": "^1.1.8",
|
|
64
|
+
"@types/react": "^19.0.10",
|
|
65
|
+
"@types/react-dom": "^19.0.4",
|
|
66
|
+
"cross-env": "^7.0.3",
|
|
67
|
+
"react": "^19.0.0",
|
|
68
|
+
"react-day-picker": "^9.5.1",
|
|
69
|
+
"react-dom": "^19.0.0",
|
|
70
|
+
"react-test-renderer": "^19.0.0",
|
|
71
|
+
"rimraf": "^6.0.1",
|
|
72
|
+
"tsup": "^8.3.6",
|
|
73
|
+
"typescript": "^5.7.3"
|
|
74
|
+
},
|
|
75
|
+
"peerDependencies": {
|
|
76
|
+
"react": "^17.0.0 || ^18.3.1 || ^19.0.0",
|
|
77
|
+
"react-dom": "^17.0.0 || ^18.3.1 || ^19.0.0"
|
|
78
|
+
},
|
|
79
|
+
"publishConfig": {
|
|
80
|
+
"access": "public"
|
|
81
|
+
},
|
|
82
|
+
"dependencies": {
|
|
83
|
+
"class-variance-authority": "^0.7.1",
|
|
84
|
+
"clsx": "^2.1.1",
|
|
85
|
+
"cmdk": "^1.0.4",
|
|
86
|
+
"embla-carousel-react": "^8.5.2",
|
|
87
|
+
"input-otp": "^1.4.2",
|
|
88
|
+
"lucide-react": "^0.475.0",
|
|
89
|
+
"next-themes": "^0.4.4",
|
|
90
|
+
"react-resizable-panels": "^2.1.7",
|
|
91
|
+
"sonner": "^2.0.1",
|
|
92
|
+
"tailwind-merge": "^3.0.2",
|
|
93
|
+
"vaul": "^1.1.2"
|
|
94
|
+
}
|
|
95
|
+
}
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"module": "ESNext",
|
|
4
|
+
|
|
5
|
+
"strict": true,
|
|
6
|
+
"esModuleInterop": true,
|
|
7
|
+
"skipLibCheck": true,
|
|
8
|
+
"forceConsistentCasingInFileNames": true,
|
|
9
|
+
"target": "ESNext",
|
|
10
|
+
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
11
|
+
"allowJs": true,
|
|
12
|
+
"allowSyntheticDefaultImports": true,
|
|
13
|
+
"noFallthroughCasesInSwitch": true,
|
|
14
|
+
|
|
15
|
+
"declaration": true,
|
|
16
|
+
"moduleResolution": "Node",
|
|
17
|
+
"resolveJsonModule": true,
|
|
18
|
+
"isolatedModules": true,
|
|
19
|
+
"noEmit": true,
|
|
20
|
+
"jsx": "react"
|
|
21
|
+
},
|
|
22
|
+
|
|
23
|
+
"include": ["src/**/*", "**/*.ts", "**/*.tsx"]
|
|
24
|
+
}
|