@veilswapapp/sdk 0.0.5 → 0.0.7

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 CHANGED
@@ -1,3 +1,6 @@
1
+ <p align="center">
2
+ <img src="https://i.imgur.com/2PGETZx.jpeg" alt="VeilSwap Banner" />
3
+ </p>
1
4
  # VeilSwap SDK
2
5
 
3
6
  Privacy-first, ZK-powered swap infrastructure.
@@ -60,7 +63,7 @@ APIs may expand as new features are released.
60
63
 
61
64
  ## Links
62
65
 
63
- Website:https:// veilswap.app
66
+ Website:https://www.veilswap.app/
64
67
  Documentation:https: //www.veilswap.app/docs
65
68
 
66
69
  ---
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veilswapapp/sdk",
3
- "version": "0.0.5",
3
+ "version": "0.0.7",
4
4
  "description": "VeilSwap SDK",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -32,7 +32,10 @@
32
32
  }
33
33
  },
34
34
  "files": [
35
- "dist"
35
+ "dist",
36
+ "src",
37
+ "README.md",
38
+ "LICENSE"
36
39
  ],
37
40
  "scripts": {
38
41
  "build": "tsup src/index.ts --format cjs,esm --dts",
package/src/index.ts ADDED
@@ -0,0 +1,3 @@
1
+ export function veilSwapInfo() {
2
+ return "VeilSwap SDK ready";
3
+ }