@fairfox/polly 0.40.0 → 0.47.0

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": "@fairfox/polly",
3
- "version": "0.40.0",
3
+ "version": "0.47.0",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "description": "Multi-execution-context framework with reactive state and cross-context messaging for Chrome extensions, PWAs, and worker-based applications",
@@ -102,6 +102,10 @@
102
102
  "import": "./dist/src/polly-ui/index.js",
103
103
  "types": "./dist/src/polly-ui/index.d.ts"
104
104
  },
105
+ "./ui/registry": {
106
+ "import": "./dist/src/polly-ui/registry.js",
107
+ "types": "./dist/src/polly-ui/registry.d.ts"
108
+ },
105
109
  "./ui/styles.css": "./dist/src/polly-ui/styles.css",
106
110
  "./ui/theme.css": "./dist/src/polly-ui/theme.css",
107
111
  "./ui/components.css": "./dist/src/polly-ui/index.css",
@@ -119,7 +123,8 @@
119
123
  "dev": "bun run build.ts --watch",
120
124
  "build": "bun run build.ts",
121
125
  "build:prod": "bun run build.ts --prod",
122
- "build:lib": "bun run build-lib.ts",
126
+ "build:lib": "bun scripts/build-polly-ui-registry.ts && bun run build-lib.ts",
127
+ "build:registry": "bun scripts/build-polly-ui-registry.ts",
123
128
  "build:full-featured": "bun run scripts/build-user-extension.ts examples/full-featured",
124
129
  "build:full-featured:prod": "bun run scripts/build-user-extension.ts examples/full-featured --prod",
125
130
  "typecheck": "bunx tsc --noEmit && bun run --cwd tests typecheck",
@@ -263,6 +268,7 @@
263
268
  "overrides": {
264
269
  "brace-expansion": "^2.0.3",
265
270
  "file-type": "^21.3.1",
271
+ "ip-address": "^10.1.1",
266
272
  "minimatch": "^9.0.6",
267
273
  "uuid": "^14.0.0"
268
274
  }