@fea-ui/react 0.0.0-canary-20260117160941
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 +3 -0
- package/dist/index.cjs +3 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +5481 -0
- package/dist/index.d.mts +5481 -0
- package/dist/index.mjs +3 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +71 -0
package/package.json
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@fea-ui/react",
|
|
3
|
+
"version": "0.0.0-canary-20260117160941",
|
|
4
|
+
"description": "FeaUI React - A lightweight, accessible React component library built on top of Base UI",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"components",
|
|
7
|
+
"design-system",
|
|
8
|
+
"fea-ui",
|
|
9
|
+
"library",
|
|
10
|
+
"react",
|
|
11
|
+
"tailwind",
|
|
12
|
+
"ui"
|
|
13
|
+
],
|
|
14
|
+
"homepage": "https://ui.aydinthefirst.com",
|
|
15
|
+
"bugs": {
|
|
16
|
+
"url": "https://github.com/aydinthefirst/fea-ui/issues"
|
|
17
|
+
},
|
|
18
|
+
"license": "MIT",
|
|
19
|
+
"author": "Halil Aydın <aydinhalil980@gmail.com>",
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "git+https://github.com/AydinTheFirst/fea-ui.git",
|
|
23
|
+
"directory": "packages/react"
|
|
24
|
+
},
|
|
25
|
+
"files": [
|
|
26
|
+
"dist"
|
|
27
|
+
],
|
|
28
|
+
"type": "module",
|
|
29
|
+
"exports": {
|
|
30
|
+
".": {
|
|
31
|
+
"types": "./dist/index.d.mts",
|
|
32
|
+
"import": "./dist/index.mjs",
|
|
33
|
+
"require": "./dist/index.cjs"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"publishConfig": {
|
|
37
|
+
"access": "public"
|
|
38
|
+
},
|
|
39
|
+
"scripts": {
|
|
40
|
+
"add:component": "bun scripts/add-component.mjs",
|
|
41
|
+
"build": "tsdown",
|
|
42
|
+
"dev": "tsdown --watch",
|
|
43
|
+
"format": "oxfmt",
|
|
44
|
+
"gen:exports": "bun scripts/generate-exports.mjs",
|
|
45
|
+
"lint": "oxlint",
|
|
46
|
+
"postadd:component": "bun run gen:exports",
|
|
47
|
+
"postgen:exports": "bun run check",
|
|
48
|
+
"type-check": "tsc --noEmit"
|
|
49
|
+
},
|
|
50
|
+
"dependencies": {
|
|
51
|
+
"@base-ui/react": "^1.0.0",
|
|
52
|
+
"lucide-react": "^0.562.0",
|
|
53
|
+
"tailwind-merge": "^3.4.0",
|
|
54
|
+
"tailwind-variants": "^3.2.2"
|
|
55
|
+
},
|
|
56
|
+
"devDependencies": {
|
|
57
|
+
"@types/bun": "^1.3.4",
|
|
58
|
+
"@types/react": "^19.2.7",
|
|
59
|
+
"@types/react-dom": "^19.2.3",
|
|
60
|
+
"oxfmt": "^0.24.0",
|
|
61
|
+
"oxlint": "^1.39.0",
|
|
62
|
+
"react": "^19.2.3",
|
|
63
|
+
"react-dom": "^19.2.3",
|
|
64
|
+
"tsdown": "^0.18.2",
|
|
65
|
+
"typescript": "~5.9.3"
|
|
66
|
+
},
|
|
67
|
+
"peerDependencies": {
|
|
68
|
+
"react": ">19.0.0",
|
|
69
|
+
"react-dom": ">19.0.0"
|
|
70
|
+
}
|
|
71
|
+
}
|