@tbookdev/vault-sdk 0.1.0

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/package.json ADDED
@@ -0,0 +1,69 @@
1
+ {
2
+ "name": "@tbookdev/vault-sdk",
3
+ "version": "0.1.0",
4
+ "description": "TBook Vault Gateway SDK — Build transactions, query on-chain state, and integrate RWA yield into any app",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "main": "./dist/index.cjs",
8
+ "module": "./dist/index.js",
9
+ "types": "./dist/index.d.ts",
10
+ "exports": {
11
+ ".": {
12
+ "import": {
13
+ "types": "./dist/index.d.ts",
14
+ "default": "./dist/index.js"
15
+ },
16
+ "require": {
17
+ "types": "./dist/index.d.cts",
18
+ "default": "./dist/index.cjs"
19
+ }
20
+ }
21
+ },
22
+ "files": [
23
+ "dist",
24
+ "README.md"
25
+ ],
26
+ "dependencies": {
27
+ "bn.js": "^5.2.0",
28
+ "bs58": "^6.0.0"
29
+ },
30
+ "peerDependencies": {
31
+ "@coral-xyz/anchor": ">=0.30.0",
32
+ "@solana/spl-token": ">=0.4.0",
33
+ "@solana/web3.js": ">=1.90.0"
34
+ },
35
+ "devDependencies": {
36
+ "@coral-xyz/anchor": "^0.30.1",
37
+ "@solana/spl-token": "^0.4.14",
38
+ "@solana/web3.js": "^1.95.0",
39
+ "@types/bn.js": "^5.1.5",
40
+ "@types/node": "^20.14.0",
41
+ "tsup": "^8.3.0",
42
+ "typescript": "^5.7.0",
43
+ "vitest": "^2.1.0"
44
+ },
45
+ "keywords": [
46
+ "solana",
47
+ "rwa",
48
+ "vault",
49
+ "usdc",
50
+ "yield",
51
+ "defi",
52
+ "tbook"
53
+ ],
54
+ "repository": {
55
+ "type": "git",
56
+ "url": "https://github.com/tbook-dev/vault-gateway-sdk"
57
+ },
58
+ "publishConfig": {
59
+ "access": "public"
60
+ },
61
+ "scripts": {
62
+ "build": "tsup",
63
+ "dev": "tsup --watch",
64
+ "test": "vitest run",
65
+ "test:watch": "vitest",
66
+ "lint": "tsc --noEmit",
67
+ "clean": "rm -rf dist"
68
+ }
69
+ }