@alkimi.org/ui-kit 0.1.2 → 0.1.3
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 +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -260,7 +260,7 @@ npm run type-check
|
|
|
260
260
|
|
|
261
261
|
## Publishing to npm
|
|
262
262
|
|
|
263
|
-
1. Update the package name in [package.json](package.json) to the npm scope (e.g., `@alkimi/ui-kit`)
|
|
263
|
+
1. Update the package name in [package.json](package.json) to the npm scope (e.g., `@alkimi.org/ui-kit`)
|
|
264
264
|
2. Update the version number
|
|
265
265
|
3. Build the library: `npm run build`
|
|
266
266
|
4. Login to npm: `npm login`
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alkimi.org/ui-kit",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "A React component library built with shadcn/ui and Tailwind CSS",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
8
8
|
"exports": {
|
|
9
9
|
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
10
11
|
"import": "./dist/index.mjs",
|
|
11
|
-
"require": "./dist/index.js"
|
|
12
|
-
"types": "./dist/index.d.ts"
|
|
12
|
+
"require": "./dist/index.js"
|
|
13
13
|
},
|
|
14
14
|
"./styles.css": "./dist/styles.css"
|
|
15
15
|
},
|