lucent-ui 0.1.0 → 0.1.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 +95 -19
- package/dist/index.cjs +15 -15
- package/dist/index.d.ts +8 -2
- package/dist/index.js +474 -470
- package/package.json +9 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lucent-ui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "An AI-first React component library with machine-readable manifests.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -32,10 +32,11 @@
|
|
|
32
32
|
"author": "Rozina Szogyenyi",
|
|
33
33
|
"license": "MIT",
|
|
34
34
|
"peerDependencies": {
|
|
35
|
-
"react": "^18.0.0",
|
|
36
|
-
"react-dom": "^18.0.0"
|
|
35
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
36
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
+
"@changesets/cli": "^2.30.0",
|
|
39
40
|
"@types/node": "^25.3.3",
|
|
40
41
|
"@types/react": "^18.3.28",
|
|
41
42
|
"@types/react-dom": "^18.3.7",
|
|
@@ -53,6 +54,10 @@
|
|
|
53
54
|
"scripts": {
|
|
54
55
|
"dev": "vite --config vite.dev.config.ts",
|
|
55
56
|
"build": "vite build",
|
|
56
|
-
"build:server": "tsc -p server/tsconfig.json"
|
|
57
|
+
"build:server": "tsc -p server/tsconfig.json",
|
|
58
|
+
"test": "echo \"No tests yet\" && exit 0",
|
|
59
|
+
"changeset": "changeset",
|
|
60
|
+
"version-packages": "changeset version",
|
|
61
|
+
"release": "pnpm prepublishOnly && changeset publish"
|
|
57
62
|
}
|
|
58
63
|
}
|