@paged-media/plugin-sdk 0.2.5-canary.0 → 0.2.8-canary.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.
Files changed (3) hide show
  1. package/dist/index.d.ts +480 -32
  2. package/dist/index.js +1312 -38
  3. package/package.json +15 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paged-media/plugin-sdk",
3
- "version": "0.2.5-canary.0",
3
+ "version": "0.2.8-canary.0",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -11,14 +11,26 @@
11
11
  }
12
12
  },
13
13
  "dependencies": {
14
- "@paged-media/plugin-api": "0.2.5-canary.0"
14
+ "@paged-media/plugin-api": "0.2.8-canary.0"
15
+ },
16
+ "peerDependencies": {
17
+ "react": "^18.3.0"
18
+ },
19
+ "peerDependenciesMeta": {
20
+ "react": {
21
+ "optional": true
22
+ }
15
23
  },
16
24
  "devDependencies": {
25
+ "@paged-media/canvas-wasm": "0.40.0",
26
+ "@types/node": "20.19.39",
27
+ "@types/react": "^18.3.12",
28
+ "react": "^18.3.0",
17
29
  "typescript": "^5.6.3",
18
30
  "vitest": "^2.1.8"
19
31
  },
20
32
  "description": "The Paged plugin runtime: loadBundle, the in-process BundleHost adapter, the gesture kit, and version negotiation.",
21
- "license": "UNLICENSED",
33
+ "license": "MPL-2.0 OR LicenseRef-PMEL",
22
34
  "files": [
23
35
  "dist"
24
36
  ],