@omnibase/shadcn 0.1.0

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/package.json ADDED
@@ -0,0 +1,75 @@
1
+ {
2
+ "name": "@omnibase/shadcn",
3
+ "version": "0.1.0",
4
+ "description": "OmniBase ShadCN UI Package",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "module": "dist/index.js",
8
+ "types": "dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js"
13
+ },
14
+ "./styles.css": "./dist/styles.css"
15
+ },
16
+ "files": [
17
+ "dist"
18
+ ],
19
+ "scripts": {
20
+ "build": "tsup src/index.ts --format cjs,esm --dts",
21
+ "dev": "vite dev",
22
+ "lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
23
+ "prepublishOnly": "npm run build",
24
+ "storybook": "storybook dev -p 6006",
25
+ "build-storybook": "storybook build"
26
+ },
27
+ "keywords": [
28
+ "react",
29
+ "ui",
30
+ "components",
31
+ "tailwind",
32
+ "shadcn",
33
+ "radix"
34
+ ],
35
+ "author": "Your Name",
36
+ "license": "MIT",
37
+ "peerDependencies": {
38
+ "react": "^19.1.1",
39
+ "react-dom": "^19.1.1"
40
+ },
41
+ "dependencies": {
42
+ "@radix-ui/react-label": "^2.1.7",
43
+ "@radix-ui/react-select": "^2.2.6",
44
+ "@radix-ui/react-slot": "^1.2.3",
45
+ "@types/node": "^24.5.2",
46
+ "class-variance-authority": "^0.7.1",
47
+ "clsx": "^2.1.1",
48
+ "lucide-react": "^0.544.0",
49
+ "tailwind-merge": "^2.6.0"
50
+ },
51
+ "devDependencies": {
52
+ "@omnibase/core-js": "^0.2.0",
53
+ "@storybook/addon-docs": "^9.1.8",
54
+ "@storybook/react-vite": "^9.1.8",
55
+ "@tailwindcss/vite": "^4.1.13",
56
+ "@types/react": "^18.3.24",
57
+ "@types/react-dom": "^18.3.7",
58
+ "@typescript-eslint/eslint-plugin": "^6.21.0",
59
+ "@typescript-eslint/parser": "^6.21.0",
60
+ "@vitejs/plugin-react": "^5.0.3",
61
+ "ajv": "^8.12.0",
62
+ "autoprefixer": "^10.4.21",
63
+ "eslint": "^8.57.1",
64
+ "eslint-plugin-react-hooks": "^4.6.2",
65
+ "eslint-plugin-storybook": "^9.1.8",
66
+ "react": "^19.1.1",
67
+ "react-dom": "^19.1.1",
68
+ "storybook": "^9.1.8",
69
+ "tailwindcss": "^4.1.13",
70
+ "tsup": "^8.5.0",
71
+ "typescript": "^5.9.2",
72
+ "vite": "^7.1.7",
73
+ "vite-plugin-dts": "^4.5.4"
74
+ }
75
+ }