@qdesignsystems/design-system-core 0.1.2

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.
@@ -0,0 +1,2 @@
1
+
2
+ export { }
@@ -0,0 +1,2 @@
1
+
2
+ export { }
package/package.json ADDED
@@ -0,0 +1,106 @@
1
+ {
2
+ "name": "@qdesignsystems/design-system-core",
3
+ "version": "0.1.2",
4
+ "publishConfig": {
5
+ "access": "public",
6
+ "registry": "https://registry.npmjs.org"
7
+ },
8
+ "description": "Core component library built on shadcn/ui",
9
+ "main": "./dist/index.js",
10
+ "module": "./dist/index.mjs",
11
+ "types": "./dist/index.d.ts",
12
+ "exports": {
13
+ ".": {
14
+ "import": "./dist/index.mjs",
15
+ "require": "./dist/index.js",
16
+ "types": "./dist/index.d.ts"
17
+ },
18
+ "./styles": "./dist/styles.css",
19
+ "./package.json": "./package.json"
20
+ },
21
+ "sideEffects": [
22
+ "**/*.css"
23
+ ],
24
+ "files": [
25
+ "dist"
26
+ ],
27
+ "scripts": {
28
+ "build": "tsup && node scripts/strip-css-sourcemap.cjs",
29
+ "dev": "tsup --watch",
30
+ "lint": "eslint .",
31
+ "type-check": "tsc --noEmit",
32
+ "clean": "rm -rf dist"
33
+ },
34
+ "peerDependencies": {
35
+ "react": "^18.0.0",
36
+ "react-dom": "^18.0.0",
37
+ "@dnd-kit/core": "^6.3.1",
38
+ "@dnd-kit/modifiers": "^9.0.0",
39
+ "@dnd-kit/sortable": "^10.0.0",
40
+ "@dnd-kit/utilities": "^3.2.2",
41
+ "@tanstack/react-table": "^8.21.3",
42
+ "react-aria-components": "^1.15.1",
43
+ "react-payment-inputs": "^1.2.0",
44
+ "use-mask-input": "^3.7.4",
45
+ "react-day-picker": "^9.13.2",
46
+ "lucide-react": "^0.575.0",
47
+ "date-fns": "^4.1.0"
48
+ },
49
+ "peerDependenciesMeta": {
50
+ "@dnd-kit/core": { "optional": true },
51
+ "@dnd-kit/modifiers": { "optional": true },
52
+ "@dnd-kit/sortable": { "optional": true },
53
+ "@dnd-kit/utilities": { "optional": true },
54
+ "@tanstack/react-table": { "optional": true },
55
+ "react-aria-components": { "optional": true },
56
+ "react-payment-inputs": { "optional": true },
57
+ "use-mask-input": { "optional": true },
58
+ "react-day-picker": { "optional": true },
59
+ "lucide-react": { "optional": true },
60
+ "date-fns": { "optional": true }
61
+ },
62
+ "dependencies": {
63
+ "@hookform/resolvers": "^5.2.2",
64
+ "@radix-ui/react-accordion": "^1.2.12",
65
+ "@radix-ui/react-avatar": "^1.1.11",
66
+ "@radix-ui/react-checkbox": "^1.3.3",
67
+ "@radix-ui/react-collapsible": "^1.1.12",
68
+ "@radix-ui/react-dialog": "^1.1.15",
69
+ "@radix-ui/react-dropdown-menu": "^2.1.16",
70
+ "@radix-ui/react-label": "^2.1.8",
71
+ "@radix-ui/react-popover": "^1.1.15",
72
+ "@radix-ui/react-progress": "^1.1.8",
73
+ "@radix-ui/react-radio-group": "^1.3.8",
74
+ "@radix-ui/react-scroll-area": "^1.2.10",
75
+ "@radix-ui/react-select": "^2.2.6",
76
+ "@radix-ui/react-separator": "^1.1.8",
77
+ "@radix-ui/react-slider": "^1.3.6",
78
+ "@radix-ui/react-slot": "^1.2.4",
79
+ "@radix-ui/react-switch": "^1.2.6",
80
+ "@radix-ui/react-tabs": "^1.1.13",
81
+ "@radix-ui/react-toggle": "^1.1.0",
82
+ "@radix-ui/react-tooltip": "^1.2.8",
83
+ "class-variance-authority": "^0.7.1",
84
+ "clsx": "^2.1.1",
85
+ "cmdk": "^1.1.1",
86
+ "input-otp": "^1.4.2",
87
+ "little-date": "^1.2.1",
88
+ "radix-ui": "^1.4.3",
89
+ "react-hook-form": "^7.71.2",
90
+ "sonner": "^2.0.7",
91
+ "tailwind-merge": "^2.6.1",
92
+ "zod": "^4.3.6"
93
+ },
94
+ "devDependencies": {
95
+ "@types/react": "^18.3.28",
96
+ "@types/react-dom": "^18.3.7",
97
+ "@types/react-payment-inputs": "^1.1.4",
98
+ "autoprefixer": "^10.4.24",
99
+ "postcss": "^8.4.32",
100
+ "react": "^18.2.0",
101
+ "react-dom": "^18.2.0",
102
+ "tailwindcss": "^3.4.0",
103
+ "tsup": "^8.0.1",
104
+ "typescript": "^5.3.3"
105
+ }
106
+ }