v0.8.3's published binaries could never start the public relay; this release carries that fix, the build guard that keeps a malformed injected hub from shipping again, the control-plane failure classification, and the update-check fallback. The prebuilt op-auth libraries are version-pinned through their signed provenance, so a 0.8.4 build requires 0.8.4 artifacts; the 0.8.3 archives are refused rather than silently linked.
44 lines
979 B
JSON
44 lines
979 B
JSON
{
|
|
"name": "@zseven-w/op-web-sdk-react",
|
|
"version": "0.8.4",
|
|
"description": "React adapter for the OpenPencil read-only web viewer SDK",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"main": "./dist/index.cjs",
|
|
"module": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.cjs"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "vitest run"
|
|
},
|
|
"dependencies": {
|
|
"@zseven-w/op-web-sdk": "workspace:*"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0",
|
|
"@types/react": "^19.0.0",
|
|
"@types/react-dom": "^19.0.0",
|
|
"@testing-library/react": "^16.0.0",
|
|
"tsup": "^8.0.0",
|
|
"typescript": "^5.7.2",
|
|
"vitest": "^3.0.0",
|
|
"jsdom": "^25.0.0"
|
|
}
|
|
}
|