@zero-transfer/sdk 0.4.0 → 0.4.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 +146 -21
- package/dist/index.cjs +724 -46
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +738 -25
- package/dist/index.d.ts +738 -25
- package/dist/index.mjs +714 -38
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zero-transfer/sdk",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.6",
|
|
4
4
|
"description": "Unified TypeScript file transfer SDK for Node.js",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -26,6 +26,9 @@
|
|
|
26
26
|
"docs:md": "typedoc --options typedoc.markdown.json",
|
|
27
27
|
"docs:scopes": "node scripts/generate-scope-docs.mjs",
|
|
28
28
|
"docs:all": "npm run docs && npm run docs:md && npm run docs:scopes",
|
|
29
|
+
"docs:site": "npm --prefix website run build",
|
|
30
|
+
"docs:site:dev": "npm --prefix website run dev",
|
|
31
|
+
"docs:site:install": "npm --prefix website install",
|
|
29
32
|
"format": "prettier --write .",
|
|
30
33
|
"format:check": "prettier --check .",
|
|
31
34
|
"lint": "eslint .",
|