@agent-shield/sdk 0.3.0 → 0.3.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/README.md +6 -0
- package/package.json +15 -11
package/README.md
CHANGED
|
@@ -294,6 +294,12 @@ IDL account: `Ev3gSzxLw6RwExAMpTHUKvn2o9YVULxiWehrHee7aepP`
|
|
|
294
294
|
| [`@agent-shield/plugin-solana-agent-kit`](https://www.npmjs.com/package/@agent-shield/plugin-solana-agent-kit) | Solana Agent Kit integration |
|
|
295
295
|
| [`@agent-shield/plugin-elizaos`](https://www.npmjs.com/package/@agent-shield/plugin-elizaos) | ElizaOS integration |
|
|
296
296
|
|
|
297
|
+
## Support
|
|
298
|
+
|
|
299
|
+
- X/Twitter: [@MightieMags](https://x.com/MightieMags)
|
|
300
|
+
- Telegram: [MightyMags](https://t.me/MightyMags)
|
|
301
|
+
- Issues: [GitHub Issues](https://github.com/Kaleb-Rupe/agentshield/issues)
|
|
302
|
+
|
|
297
303
|
## License
|
|
298
304
|
|
|
299
305
|
MIT
|
package/package.json
CHANGED
|
@@ -1,18 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agent-shield/sdk",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
|
+
"author": "Kaleb Rupe (https://x.com/MightieMags)",
|
|
5
|
+
"homepage": "https://github.com/Kaleb-Rupe/agentshield#readme",
|
|
6
|
+
"bugs": {
|
|
7
|
+
"url": "https://github.com/Kaleb-Rupe/agentshield/issues",
|
|
8
|
+
"email": "https://t.me/MightyMags"
|
|
9
|
+
},
|
|
4
10
|
"description": "TypeScript SDK for AgentShield — permission-guarded DeFi access for AI agents on Solana",
|
|
5
11
|
"main": "dist/index.js",
|
|
6
12
|
"module": "dist/index.js",
|
|
7
13
|
"types": "dist/index.d.ts",
|
|
8
|
-
"files": [
|
|
9
|
-
"dist",
|
|
10
|
-
"README.md"
|
|
11
|
-
],
|
|
14
|
+
"files": ["dist", "README.md"],
|
|
12
15
|
"sideEffects": false,
|
|
13
16
|
"engines": {
|
|
14
17
|
"node": ">=18.0.0"
|
|
15
18
|
},
|
|
19
|
+
"scripts": {
|
|
20
|
+
"build": "tsc",
|
|
21
|
+
"clean": "rm -rf dist",
|
|
22
|
+
"test": "mocha --require ts-node/register tests/**/*.test.ts --timeout 30000",
|
|
23
|
+
"prepublishOnly": "npm run clean && npm run build"
|
|
24
|
+
},
|
|
16
25
|
"dependencies": {
|
|
17
26
|
"@solana/spl-token": "^0.4.0"
|
|
18
27
|
},
|
|
@@ -47,10 +56,5 @@
|
|
|
47
56
|
"type": "git",
|
|
48
57
|
"url": "https://github.com/Kaleb-Rupe/agentshield",
|
|
49
58
|
"directory": "sdk/typescript"
|
|
50
|
-
},
|
|
51
|
-
"scripts": {
|
|
52
|
-
"build": "tsc",
|
|
53
|
-
"clean": "rm -rf dist",
|
|
54
|
-
"test": "mocha --require ts-node/register tests/**/*.test.ts --timeout 30000"
|
|
55
59
|
}
|
|
56
|
-
}
|
|
60
|
+
}
|