lambda-ui-components 1.0.0 → 1.0.1
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 +98 -111
- package/dist/main.mjs +144 -146
- package/dist/main.umd.js +4 -4
- package/package.json +102 -102
package/package.json
CHANGED
|
@@ -1,104 +1,104 @@
|
|
|
1
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
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
2
|
+
"name": "lambda-ui-components",
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Modern, accessible, and themeable React UI components library built with TypeScript and Framer Motion.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"main": "dist/main.umd.js",
|
|
8
|
+
"module": "dist/main.mjs",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/main.d.ts",
|
|
12
|
+
"import": "./dist/main.mjs",
|
|
13
|
+
"require": "./dist/main.umd.js"
|
|
14
|
+
},
|
|
15
|
+
"./dist/main.css": "./dist/main.css"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist",
|
|
19
|
+
"LICENSE",
|
|
20
|
+
"README.md"
|
|
21
|
+
],
|
|
22
|
+
"scripts": {
|
|
23
|
+
"dev": "vite",
|
|
24
|
+
"build": "tsc -b && vite build",
|
|
25
|
+
"lint": "eslint .",
|
|
26
|
+
"preview": "vite preview",
|
|
27
|
+
"storybook": "storybook dev -p 6006",
|
|
28
|
+
"build-storybook": "storybook build"
|
|
29
|
+
},
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"@fontsource-variable/manrope": "^5.2.7",
|
|
32
|
+
"class-variance-authority": "^0.7.1",
|
|
33
|
+
"clsx": "^2.1.1",
|
|
34
|
+
"framer-motion": "^12.23.22",
|
|
35
|
+
"lucide-react": "^0.482.0",
|
|
36
|
+
"use-eye-dropper": "^1.7.1"
|
|
37
|
+
},
|
|
38
|
+
"peerDependencies": {
|
|
39
|
+
"prismjs": ">=1.29.0",
|
|
40
|
+
"react": ">=18.0.0",
|
|
41
|
+
"react-dom": ">=18.0.0"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@chromatic-com/storybook": "^4.1.2",
|
|
45
|
+
"@eslint/js": "^9.21.0",
|
|
46
|
+
"@storybook/addon-docs": "^10.0.2",
|
|
47
|
+
"@storybook/addon-onboarding": "^10.0.2",
|
|
48
|
+
"@storybook/addon-themes": "^10.0.2",
|
|
49
|
+
"@storybook/experimental-addon-test": "^8.6.7",
|
|
50
|
+
"@storybook/react-vite": "^10.0.2",
|
|
51
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
52
|
+
"@testing-library/react": "^16.3.0",
|
|
53
|
+
"@types/node": "^22.13.10",
|
|
54
|
+
"@types/prismjs": "^1.26.5",
|
|
55
|
+
"@types/react": "^19.0.10",
|
|
56
|
+
"@types/react-dom": "^19.0.4",
|
|
57
|
+
"typescript-plugin-css-modules": "^5.1.0",
|
|
58
|
+
"@vitejs/plugin-react": "^4.3.4",
|
|
59
|
+
"@vitest/browser": "^3.0.9",
|
|
60
|
+
"@vitest/coverage-v8": "^3.0.9",
|
|
61
|
+
"eslint": "^9.21.0",
|
|
62
|
+
"eslint-plugin-react-hooks": "^5.1.0",
|
|
63
|
+
"eslint-plugin-react-refresh": "^0.4.19",
|
|
64
|
+
"eslint-plugin-storybook": "^10.0.2",
|
|
65
|
+
"globals": "^15.15.0",
|
|
66
|
+
"jsdom": "^27.1.0",
|
|
67
|
+
"playwright": "^1.51.1",
|
|
68
|
+
"prettier": "^3.6.2",
|
|
69
|
+
"storybook": "^10.0.2",
|
|
70
|
+
"storybook-dark-mode": "^4.0.2",
|
|
71
|
+
"typescript": "~5.7.2",
|
|
72
|
+
"typescript-eslint": "^8.24.1",
|
|
73
|
+
"vite": "^6.2.0",
|
|
74
|
+
"vite-plugin-dts": "^4.5.3",
|
|
75
|
+
"vitest": "^3.0.9"
|
|
76
|
+
},
|
|
77
|
+
"eslintConfig": {
|
|
78
|
+
"extends": [
|
|
79
|
+
"plugin:storybook/recommended"
|
|
80
|
+
]
|
|
81
|
+
},
|
|
82
|
+
"keywords": [
|
|
83
|
+
"react",
|
|
84
|
+
"ui",
|
|
85
|
+
"components",
|
|
86
|
+
"typescript",
|
|
87
|
+
"framer-motion",
|
|
88
|
+
"skeleton",
|
|
89
|
+
"card",
|
|
90
|
+
"button",
|
|
91
|
+
"lambda-ui",
|
|
92
|
+
"bitcoer",
|
|
93
|
+
"design-system"
|
|
94
|
+
],
|
|
95
|
+
"repository": {
|
|
96
|
+
"type": "git",
|
|
97
|
+
"url": "https://github.com/AletzMan/lambda-ui-components.git"
|
|
98
|
+
},
|
|
99
|
+
"homepage": "https://github.com/AletzMan/lambda-ui-components",
|
|
100
|
+
"bugs": {
|
|
101
|
+
"url": "https://github.com/AletzMan/lambda-ui-components/issues"
|
|
102
|
+
},
|
|
103
|
+
"author": "BitCoer_ (https://alejandro-garcia.dev)"
|
|
104
104
|
}
|