@reclaimprotocol/attestor-core 5.0.1-beta.26 → 5.0.1-beta.28
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.
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
// Lightweight TLS-only exports for browser extensions
|
|
2
|
+
// This entry point avoids pulling in heavy ZK dependencies (snarkjs, ffjavascript)
|
|
3
|
+
export { setCryptoImplementation } from '@reclaimprotocol/tls';
|
|
4
|
+
export { webcryptoCrypto } from '@reclaimprotocol/tls/webcrypto';
|
|
5
|
+
export * as tls from '@reclaimprotocol/tls';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reclaimprotocol/attestor-core",
|
|
3
|
-
"version": "5.0.1-beta.
|
|
3
|
+
"version": "5.0.1-beta.28",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"imports": {
|
|
@@ -15,6 +15,14 @@
|
|
|
15
15
|
"./external-rpc": {
|
|
16
16
|
"types": "./lib/external-rpc/index.d.ts",
|
|
17
17
|
"default": "./lib/external-rpc/index.js"
|
|
18
|
+
},
|
|
19
|
+
"./tls": {
|
|
20
|
+
"types": "./lib/tls-exports.d.ts",
|
|
21
|
+
"default": "./lib/tls-exports.js"
|
|
22
|
+
},
|
|
23
|
+
"./browser": {
|
|
24
|
+
"types": "./lib/index.d.ts",
|
|
25
|
+
"default": "./browser/resources/attestor-browser.min.mjs"
|
|
18
26
|
}
|
|
19
27
|
},
|
|
20
28
|
"scripts": {
|
|
@@ -48,7 +56,9 @@
|
|
|
48
56
|
"publish:pkg": "npm publish --access public"
|
|
49
57
|
},
|
|
50
58
|
"files": [
|
|
51
|
-
"lib/*"
|
|
59
|
+
"lib/*",
|
|
60
|
+
"browser/resources/*.mjs",
|
|
61
|
+
"browser/resources/*.map"
|
|
52
62
|
],
|
|
53
63
|
"keywords": [
|
|
54
64
|
"reclaim-protocol",
|