@cloak.ag/sdk 1.0.4 → 1.0.6
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/README.md +39 -4
- package/dist/index.cjs +1041 -63
- package/dist/index.d.cts +318 -8
- package/dist/index.d.ts +318 -8
- package/dist/index.js +1025 -63
- package/package.json +2 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloak.ag/sdk",
|
|
3
3
|
"description": "TypeScript SDK for Cloak",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.6",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
7
7
|
"module": "dist/index.js",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
}
|
|
15
15
|
},
|
|
16
16
|
"scripts": {
|
|
17
|
-
"build": "tsup src/index.ts --format cjs,esm --dts --external fs --external path",
|
|
17
|
+
"build": "tsup src/index.ts --format cjs,esm --dts --external fs --external path --external crypto",
|
|
18
18
|
"lint": "tsc --noEmit",
|
|
19
19
|
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
|
|
20
20
|
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
|