@circuit-llm/vault 0.2.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.
- package/LICENSE +21 -0
- package/README.md +25 -0
- package/dist/index.d.ts +1548 -0
- package/dist/index.js +1577 -0
- package/package.json +46 -0
package/package.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@circuit-llm/vault",
|
|
3
|
+
"version": "0.2.1",
|
|
4
|
+
"description": "Circuit SDK vault client — drive the non-custodial on-chain Agent Vault Anchor program: owner lifecycle, the route-agnostic trade adapter, a Jupiter route source, and makeVaultExecutor (the concrete executor for @circuit-llm/agent's VaultCustody). Opt-in: pulls @anchor-lang/core.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"development": "./src/index.ts",
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"default": "./dist/index.js"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"scripts": {
|
|
15
|
+
"test": "node --experimental-strip-types --conditions=development --test test/*.test.ts",
|
|
16
|
+
"typecheck": "tsc -p tsconfig.json",
|
|
17
|
+
"build": "tsup src/index.ts --format esm --dts --clean --out-dir dist",
|
|
18
|
+
"prepack": "tsup src/index.ts --format esm --dts --clean --out-dir dist"
|
|
19
|
+
},
|
|
20
|
+
"peerDependencies": {
|
|
21
|
+
"@anchor-lang/core": "^1.1.1"
|
|
22
|
+
},
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"@anchor-lang/core": "^1.1.1"
|
|
25
|
+
},
|
|
26
|
+
"main": "./dist/index.js",
|
|
27
|
+
"types": "./dist/index.d.ts",
|
|
28
|
+
"files": [
|
|
29
|
+
"dist"
|
|
30
|
+
],
|
|
31
|
+
"publishConfig": {
|
|
32
|
+
"access": "public"
|
|
33
|
+
},
|
|
34
|
+
"repository": {
|
|
35
|
+
"type": "git",
|
|
36
|
+
"url": "git+https://github.com/Circuit-LLM/circuit-sdk.git",
|
|
37
|
+
"directory": "packages/vault"
|
|
38
|
+
},
|
|
39
|
+
"homepage": "https://github.com/Circuit-LLM/circuit-sdk/tree/main/packages/vault#readme",
|
|
40
|
+
"bugs": {
|
|
41
|
+
"url": "https://github.com/Circuit-LLM/circuit-sdk/issues"
|
|
42
|
+
},
|
|
43
|
+
"engines": {
|
|
44
|
+
"node": ">=18"
|
|
45
|
+
}
|
|
46
|
+
}
|