@lavarage/sdk 7.5.6 → 7.5.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/.gitignore CHANGED
@@ -1,2 +1,19 @@
1
+ # Dependencies
1
2
  node_modules/
2
- dist/
3
+
4
+ # Build outputs
5
+ dist/
6
+ docs/
7
+
8
+ # IDE
9
+ .vscode/
10
+ .idea/
11
+ *.swp
12
+ *.swo
13
+ .DS_Store
14
+ .DS_Store?
15
+ ._*
16
+
17
+ # Environment
18
+ .env
19
+ .env.local
package/README.md ADDED
@@ -0,0 +1,33 @@
1
+ # Lavarage SDK
2
+
3
+ TypeScript SDK for interacting with the Lavarage DeFi protocol on Solana and EVM chains.
4
+
5
+ ## Development Setup
6
+
7
+ ### Prerequisites
8
+ - Node.js (v16 or higher)
9
+ - npm
10
+
11
+ ### Installation
12
+ ```bash
13
+ npm install
14
+ ```
15
+ ### Build
16
+
17
+ Build the SDK for distribution:
18
+
19
+ ```bash
20
+ npm run build
21
+ ```
22
+
23
+ ### Generate Documentation
24
+
25
+ Generate TypeDoc documentation:
26
+
27
+ ```bash
28
+ npm run docs:build
29
+ ```
30
+ Documentation will be generated in the docs/ directory.
31
+
32
+ Open docs/index.html in a browser to view.
33
+