adnbn-ui 0.1.1 → 0.1.2

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.
Files changed (1) hide show
  1. package/package.json +21 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adnbn-ui",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "A comprehensive React UI component library designed exclusively for the AddonBone browser extension framework with customizable theming and consistent design patterns",
5
5
  "keywords": [
6
6
  "react",
@@ -17,11 +17,27 @@
17
17
  "author": "Addon Bone",
18
18
  "license": "MIT",
19
19
  "type": "module",
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "https://github.com/addonbone/adnbn-ui.git"
23
+ },
20
24
  "exports": {
21
- ".": "./src/index.ts",
22
- "./config": "./src/config/index.ts",
23
- "./plugin": "./src/plugin/index.ts",
24
- "./theme": "./src/styles/mixins.scss"
25
+ ".": {
26
+ "types": "./src/index.ts",
27
+ "default": "./src/index.ts"
28
+ },
29
+ "./config": {
30
+ "types": "./src/config/index.ts",
31
+ "default": "./src/config/index.ts"
32
+ },
33
+ "./plugin": {
34
+ "types": "./src/plugin/index.ts",
35
+ "default": "./src/plugin/index.ts"
36
+ },
37
+ "./theme": {
38
+ "types": "./src/styles/mixins.scss",
39
+ "default": "./src/styles/mixins.scss"
40
+ }
25
41
  },
26
42
  "sideEffects": [
27
43
  "*.css",