@planetaexo/design-system 0.2.0 → 0.2.10
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/README.md +121 -121
- package/dist/index.cjs +845 -98
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +18 -1
- package/dist/index.d.ts +18 -1
- package/dist/index.js +845 -98
- package/dist/index.js.map +1 -1
- package/package.json +61 -61
package/package.json
CHANGED
|
@@ -1,61 +1,61 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@planetaexo/design-system",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"private": false,
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "./dist/index.cjs",
|
|
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
|
-
"require": "./dist/index.cjs"
|
|
14
|
-
}
|
|
15
|
-
},
|
|
16
|
-
"files": [
|
|
17
|
-
"dist"
|
|
18
|
-
],
|
|
19
|
-
"scripts": {
|
|
20
|
-
"dev": "next dev",
|
|
21
|
-
"build": "next build",
|
|
22
|
-
"build:lib": "tsup",
|
|
23
|
-
"build:wp": "vite build",
|
|
24
|
-
"prepare": "npm run build:lib",
|
|
25
|
-
"start": "next start",
|
|
26
|
-
"lint": "eslint"
|
|
27
|
-
},
|
|
28
|
-
"peerDependencies": {
|
|
29
|
-
"react": "^18.0.0 || ^19.0.0",
|
|
30
|
-
"react-dom": "^18.0.0 || ^19.0.0"
|
|
31
|
-
},
|
|
32
|
-
"dependencies": {
|
|
33
|
-
"@base-ui/react": "^1.3.0",
|
|
34
|
-
"class-variance-authority": "^0.7.1",
|
|
35
|
-
"clsx": "^2.1.1",
|
|
36
|
-
"date-fns": "^4.1.0",
|
|
37
|
-
"hls.js": "^1.6.15",
|
|
38
|
-
"lucide-react": "^0.577.0",
|
|
39
|
-
"next": "16.1.6",
|
|
40
|
-
"react": "19.2.3",
|
|
41
|
-
"react-day-picker": "^9.14.0",
|
|
42
|
-
"react-dom": "19.2.3",
|
|
43
|
-
"shadcn": "^4.0.6",
|
|
44
|
-
"tailwind-merge": "^3.5.0",
|
|
45
|
-
"tw-animate-css": "^1.4.0"
|
|
46
|
-
},
|
|
47
|
-
"devDependencies": {
|
|
48
|
-
"@tailwindcss/postcss": "^4",
|
|
49
|
-
"@tailwindcss/vite": "^4",
|
|
50
|
-
"@types/node": "^20",
|
|
51
|
-
"@types/react": "^19",
|
|
52
|
-
"@types/react-dom": "^19",
|
|
53
|
-
"@vitejs/plugin-react": "^4.7.0",
|
|
54
|
-
"eslint": "^9",
|
|
55
|
-
"eslint-config-next": "16.1.6",
|
|
56
|
-
"tailwindcss": "^4",
|
|
57
|
-
"tsup": "^8.5.0",
|
|
58
|
-
"typescript": "^5",
|
|
59
|
-
"vite": "^6.3.5"
|
|
60
|
-
}
|
|
61
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@planetaexo/design-system",
|
|
3
|
+
"version": "0.2.10",
|
|
4
|
+
"private": false,
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.cjs",
|
|
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
|
+
"require": "./dist/index.cjs"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist"
|
|
18
|
+
],
|
|
19
|
+
"scripts": {
|
|
20
|
+
"dev": "next dev",
|
|
21
|
+
"build": "next build",
|
|
22
|
+
"build:lib": "tsup",
|
|
23
|
+
"build:wp": "vite build",
|
|
24
|
+
"prepare": "npm run build:lib",
|
|
25
|
+
"start": "next start",
|
|
26
|
+
"lint": "eslint"
|
|
27
|
+
},
|
|
28
|
+
"peerDependencies": {
|
|
29
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
30
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
31
|
+
},
|
|
32
|
+
"dependencies": {
|
|
33
|
+
"@base-ui/react": "^1.3.0",
|
|
34
|
+
"class-variance-authority": "^0.7.1",
|
|
35
|
+
"clsx": "^2.1.1",
|
|
36
|
+
"date-fns": "^4.1.0",
|
|
37
|
+
"hls.js": "^1.6.15",
|
|
38
|
+
"lucide-react": "^0.577.0",
|
|
39
|
+
"next": "16.1.6",
|
|
40
|
+
"react": "19.2.3",
|
|
41
|
+
"react-day-picker": "^9.14.0",
|
|
42
|
+
"react-dom": "19.2.3",
|
|
43
|
+
"shadcn": "^4.0.6",
|
|
44
|
+
"tailwind-merge": "^3.5.0",
|
|
45
|
+
"tw-animate-css": "^1.4.0"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@tailwindcss/postcss": "^4",
|
|
49
|
+
"@tailwindcss/vite": "^4",
|
|
50
|
+
"@types/node": "^20",
|
|
51
|
+
"@types/react": "^19",
|
|
52
|
+
"@types/react-dom": "^19",
|
|
53
|
+
"@vitejs/plugin-react": "^4.7.0",
|
|
54
|
+
"eslint": "^9",
|
|
55
|
+
"eslint-config-next": "16.1.6",
|
|
56
|
+
"tailwindcss": "^4",
|
|
57
|
+
"tsup": "^8.5.0",
|
|
58
|
+
"typescript": "^5",
|
|
59
|
+
"vite": "^6.3.5"
|
|
60
|
+
}
|
|
61
|
+
}
|