-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.18 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
{
"name": "@simple-module-py/ui",
"version": "0.0.32",
"description": "shadcn-derived React UI components and layouts for simple_module apps",
"keywords": [
"simple-module",
"react",
"shadcn",
"tailwind",
"ui"
],
"homepage": "https://github.com/antosubash/simple_module_python#readme",
"bugs": "https://github.com/antosubash/simple_module_python/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/antosubash/simple_module_python.git",
"directory": "packages/ui"
},
"license": "MIT",
"author": "Anto Subash <antosubash@live.com>",
"type": "module",
"main": "src/index.ts",
"types": "src/index.ts",
"exports": {
".": {
"types": "./src/index.ts",
"default": "./src/index.ts"
},
"./components/ui/*": {
"types": "./src/components/ui/*.tsx",
"default": "./src/components/ui/*.tsx"
},
"./components/*": {
"types": "./src/components/*.tsx",
"default": "./src/components/*.tsx"
},
"./layouts/*": {
"types": "./src/layouts/*.tsx",
"default": "./src/layouts/*.tsx"
},
"./hooks/*": {
"types": "./src/hooks/*.ts",
"default": "./src/hooks/*.ts"
},
"./lib/*": {
"types": "./src/lib/*.ts",
"default": "./src/lib/*.ts"
},
"./types": {
"types": "./src/types.ts",
"default": "./src/types.ts"
},
"./styles/*": "./src/styles/*"
},
"files": [
"src",
"README.md"
],
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@inertiajs/react": "^2.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"dependencies": {
"@base-ui/react": "^1.7.0",
"@simple-module-py/i18n": "0.0.32",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"embla-carousel-react": "^8.6.0",
"input-otp": "^1.4.2",
"lucide-react": "^1.28.0",
"next-themes": "^0.4.6",
"radix-ui": "^1.6.7",
"react-day-picker": "^10.0.1",
"react-resizable-panels": "^4.12.2",
"recharts": "^3.10.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"vaul": "^1.1.2"
},
"devDependencies": {
"@simple-module-py/tsconfig": "0.0.32"
}
}