@voltr/vault-sdk 0.1.1

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,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json ADDED
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "@voltr/vault-sdk",
3
+ "version": "0.1.1",
4
+ "description": "SDK for interacting with Voltr Protocol",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "files": [
8
+ "dist"
9
+ ],
10
+ "scripts": {
11
+ "clean": "rm -rf dist docs docs-md",
12
+ "build": "npm run clean && tsc",
13
+ "prepare": "npm run build",
14
+ "docs": "typedoc --out docs src/index.ts",
15
+ "docs:watch": "typedoc --out docs src/index.ts --watch",
16
+ "docs:markdown": "typedoc --out docs-md src/index.ts --plugin typedoc-plugin-markdown",
17
+ "docs:deploy": "npm run docs && gh-pages -d docs",
18
+ "prepublishOnly": "npm run build && npm run docs"
19
+ },
20
+ "keywords": [
21
+ "solana",
22
+ "voltr",
23
+ "vault",
24
+ "sdk"
25
+ ],
26
+ "author": "voltr",
27
+ "license": "MIT",
28
+ "dependencies": {
29
+ "@coral-xyz/anchor": "^0.30.1",
30
+ "@solana/spl-token": "^0.4.9",
31
+ "@solana/web3.js": "^1.98.0"
32
+ },
33
+ "devDependencies": {
34
+ "@types/node": "^22.10.2",
35
+ "gh-pages": "^6.2.0",
36
+ "typedoc": "^0.27.5",
37
+ "typedoc-plugin-markdown": "^4.3.3",
38
+ "typescript": "^5.7.2"
39
+ }
40
+ }