@busiverse/ui 0.2.4 → 0.2.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@busiverse/ui",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
4
4
  "author": "Joel Julius Okoromi <okmarq@gmail.com> (https://busiversehq.com)",
5
5
  "description": "BUSIVERSE shared React UI, design tokens, pricing, i18n, auth helpers, and product shell. Network-neutral core; Gateway transport is app-injected.",
6
6
  "type": "module",
@@ -26,11 +26,36 @@
26
26
  "default": "./dist/tailwind/index.js"
27
27
  },
28
28
  "./assets/*": "./dist/assets/*",
29
- "./package.json": "./package.json"
29
+ "./package.json": "./package.json",
30
+ "./assets": {
31
+ "types": "./dist/assets/index.d.ts",
32
+ "import": "./dist/assets/index.js",
33
+ "default": "./dist/assets/index.js"
34
+ },
35
+ "./brand": {
36
+ "types": "./dist/components/brand/index.d.ts",
37
+ "import": "./dist/components/brand/index.js",
38
+ "default": "./dist/components/brand/index.js"
39
+ },
40
+ "./social": {
41
+ "types": "./dist/components/social/index.d.ts",
42
+ "import": "./dist/components/social/index.js",
43
+ "default": "./dist/components/social/index.js"
44
+ },
45
+ "./i18n": {
46
+ "types": "./dist/i18n/index.d.ts",
47
+ "import": "./dist/i18n/index.js",
48
+ "default": "./dist/i18n/index.js"
49
+ },
50
+ "./billing": {
51
+ "types": "./dist/components/billing/index.d.ts",
52
+ "import": "./dist/components/billing/index.js",
53
+ "default": "./dist/components/billing/index.js"
54
+ }
30
55
  },
31
56
  "scripts": {
32
57
  "clean": "node scripts/clean.mjs",
33
- "build": "npm run clean && tsup src/index.ts src/tailwind/index.ts --format esm --target es2022 && tsc -p tsconfig.build.json && node scripts/copy-static.mjs",
58
+ "build": "npm run clean && tsup src/index.ts src/tailwind/index.ts src/assets/index.ts src/components/brand/index.ts src/components/social/index.ts src/i18n/index.ts src/components/billing/index.ts --format esm --target es2022 && tsc -p tsconfig.build.json && node scripts/copy-static.mjs",
34
59
  "typecheck": "tsc --noEmit",
35
60
  "pack:local": "npm pack",
36
61
  "prepublishOnly": "npm run typecheck && npm run build && npm pack --dry-run"