@agent-shield/platform 0.1.0 → 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.
Files changed (1) hide show
  1. package/package.json +17 -9
package/package.json CHANGED
@@ -1,15 +1,9 @@
1
1
  {
2
2
  "name": "@agent-shield/platform",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Platform client for AgentShield — request TEE wallet provisioning via Solana Actions",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
- "scripts": {
8
- "build": "tsc",
9
- "clean": "rm -rf dist",
10
- "test": "mocha --require ts-node/register tests/**/*.test.ts --timeout 30000",
11
- "prepublishOnly": "npm run build"
12
- },
13
7
  "files": [
14
8
  "dist/**/*",
15
9
  "README.md"
@@ -27,10 +21,24 @@
27
21
  "ts-node": "^10.9.2",
28
22
  "typescript": "^5.3.3"
29
23
  },
24
+ "keywords": [
25
+ "solana",
26
+ "ai-agent",
27
+ "solana-actions",
28
+ "blinks",
29
+ "platform",
30
+ "tee",
31
+ "provisioning"
32
+ ],
30
33
  "license": "MIT",
31
34
  "repository": {
32
35
  "type": "git",
33
- "url": "https://github.com/agent-shield/agent-shield",
36
+ "url": "https://github.com/Kaleb-Rupe/agentshield",
34
37
  "directory": "sdk/platform"
38
+ },
39
+ "scripts": {
40
+ "build": "tsc",
41
+ "clean": "rm -rf dist",
42
+ "test": "mocha --require ts-node/register tests/**/*.test.ts --timeout 30000"
35
43
  }
36
- }
44
+ }