@pelatform/starter.ui 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/README.md +5 -0
- package/dist/chunk-HHNNYCNT.js +62 -0
- package/dist/hooks.d.ts +1063 -0
- package/dist/hooks.js +722 -0
- package/dist/index.d.ts +1739 -0
- package/dist/index.js +13322 -0
- package/dist/style.css +1 -0
- package/package.json +99 -0
package/dist/style.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@source ".";
|
package/package.json
ADDED
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@pelatform/starter.ui",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "A part of SaaS starter kit for Pelatform applications.",
|
|
5
|
+
"author": "Pelatform",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"main": "./dist/index.js",
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"sideEffects": false,
|
|
11
|
+
"exports": {
|
|
12
|
+
"./css": "./dist/style.css",
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"default": "./dist/index.js"
|
|
16
|
+
},
|
|
17
|
+
"./hooks": {
|
|
18
|
+
"types": "./dist/hooks.d.ts",
|
|
19
|
+
"default": "./dist/hooks.js"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"scripts": {
|
|
23
|
+
"clean": "rimraf dist",
|
|
24
|
+
"clean:all": "rimraf .turbo dist node_modules",
|
|
25
|
+
"dev": "tsup --watch --onSuccess \"cp src/style.css dist/style.css\"",
|
|
26
|
+
"build": "tsup && cp src/style.css dist/style.css",
|
|
27
|
+
"types:check": "tsc --noEmit"
|
|
28
|
+
},
|
|
29
|
+
"files": [
|
|
30
|
+
"dist"
|
|
31
|
+
],
|
|
32
|
+
"keywords": [
|
|
33
|
+
"pelatform",
|
|
34
|
+
"starter kit",
|
|
35
|
+
"components",
|
|
36
|
+
"utilities",
|
|
37
|
+
"ui"
|
|
38
|
+
],
|
|
39
|
+
"devDependencies": {
|
|
40
|
+
"@dnd-kit/core": "^6.3.1",
|
|
41
|
+
"@dnd-kit/modifiers": "^9.0.0",
|
|
42
|
+
"@dnd-kit/sortable": "^10.0.0",
|
|
43
|
+
"@dnd-kit/utilities": "^3.2.2",
|
|
44
|
+
"@headless-tree/core": "^1.6.3",
|
|
45
|
+
"@pelatform/tsconfig": "^0.1.4",
|
|
46
|
+
"@pelatform/utils": "^1.0.16",
|
|
47
|
+
"@tanstack/react-table": "^8.21.3",
|
|
48
|
+
"@types/react": "^19.2.14",
|
|
49
|
+
"class-variance-authority": "^0.7.1",
|
|
50
|
+
"cmdk": "^1.1.1",
|
|
51
|
+
"embla-carousel-react": "^8.6.0",
|
|
52
|
+
"input-otp": "^1.4.2",
|
|
53
|
+
"lucide-react": "^0.577.0",
|
|
54
|
+
"motion": "^12.35.1",
|
|
55
|
+
"next-themes": "^0.4.6",
|
|
56
|
+
"radix-ui": "^1.4.3",
|
|
57
|
+
"react": "^19.2.4",
|
|
58
|
+
"react-aria-components": "^1.16.0",
|
|
59
|
+
"react-day-picker": "^9.14.0",
|
|
60
|
+
"react-hook-form": "^7.71.2",
|
|
61
|
+
"react-resizable-panels": "^4.7.2",
|
|
62
|
+
"sonner": "^2.0.7",
|
|
63
|
+
"tsup": "^8.5.1",
|
|
64
|
+
"vaul": "^1.1.2"
|
|
65
|
+
},
|
|
66
|
+
"peerDependencies": {
|
|
67
|
+
"@dnd-kit/core": ">=6.3.0",
|
|
68
|
+
"@dnd-kit/modifiers": ">=9.0.0",
|
|
69
|
+
"@dnd-kit/sortable": ">=10.0.0",
|
|
70
|
+
"@dnd-kit/utilities": ">=3.2.0",
|
|
71
|
+
"@headless-tree/core": ">=1.6.0",
|
|
72
|
+
"@pelatform/utils": ">=1.0.10",
|
|
73
|
+
"@tanstack/react-table": ">=8.20.0",
|
|
74
|
+
"class-variance-authority": ">=0.7.0",
|
|
75
|
+
"cmdk": ">=1.1.0",
|
|
76
|
+
"embla-carousel-react": ">=8.6.0",
|
|
77
|
+
"input-otp": ">=1.4.0",
|
|
78
|
+
"lucide-react": ">=0.577.0",
|
|
79
|
+
"motion": ">=12.35.0",
|
|
80
|
+
"next-themes": ">=0.4.5",
|
|
81
|
+
"radix-ui": ">=1.4.0",
|
|
82
|
+
"react": ">=18.0.0 || >=19.0.0-rc.0",
|
|
83
|
+
"react-aria-components": ">=1.16.0",
|
|
84
|
+
"react-day-picker": ">=9.14.0",
|
|
85
|
+
"react-hook-form": ">=7.70.0",
|
|
86
|
+
"react-resizable-panels": ">=4.7.0",
|
|
87
|
+
"sonner": ">=2.0.5",
|
|
88
|
+
"vaul": ">=1.1.0"
|
|
89
|
+
},
|
|
90
|
+
"publishConfig": {
|
|
91
|
+
"registry": "https://registry.npmjs.org/",
|
|
92
|
+
"access": "public"
|
|
93
|
+
},
|
|
94
|
+
"lint-staged": {
|
|
95
|
+
"*.{js,jsx,ts,tsx,cjs,mjs,cts,mts}": "biome check --write --no-errors-on-unmatched",
|
|
96
|
+
"*.{md,yml,yaml}": "prettier --write",
|
|
97
|
+
"*.{json,jsonc,html}": "biome format --write --no-errors-on-unmatched"
|
|
98
|
+
}
|
|
99
|
+
}
|