@agent-shield/custody-crossmint 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 +10 -11
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-shield/custody-crossmint",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Crossmint TEE custody adapter for AgentShield — hardware-enclave signing for AI agents",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -12,12 +12,6 @@
12
12
  "engines": {
13
13
  "node": ">=18.0.0"
14
14
  },
15
- "scripts": {
16
- "build": "tsc",
17
- "clean": "rm -rf dist",
18
- "prepublishOnly": "npm run clean && npm run build",
19
- "test": "TS_NODE_PROJECT=tsconfig.test.json mocha --require ts-node/register tests/**/*.test.ts --timeout 30000"
20
- },
21
15
  "dependencies": {
22
16
  "@crossmint/wallets-sdk": "^0.2.0",
23
17
  "@solana/web3.js": "^1.95.0"
@@ -31,14 +25,14 @@
31
25
  }
32
26
  },
33
27
  "devDependencies": {
34
- "@agent-shield/solana": "workspace:*",
35
28
  "@types/chai": "^4.3.11",
36
29
  "@types/mocha": "^10.0.6",
37
30
  "@types/node": "^20.11.0",
38
31
  "chai": "^4.4.1",
39
32
  "mocha": "^10.3.0",
40
33
  "ts-node": "^10.9.2",
41
- "typescript": "^5.3.3"
34
+ "typescript": "^5.3.3",
35
+ "@agent-shield/solana": "0.3.0"
42
36
  },
43
37
  "keywords": [
44
38
  "solana",
@@ -52,7 +46,12 @@
52
46
  "license": "MIT",
53
47
  "repository": {
54
48
  "type": "git",
55
- "url": "https://github.com/agent-shield/agent-shield",
49
+ "url": "https://github.com/Kaleb-Rupe/agentshield",
56
50
  "directory": "sdk/custody/crossmint"
51
+ },
52
+ "scripts": {
53
+ "build": "tsc",
54
+ "clean": "rm -rf dist",
55
+ "test": "TS_NODE_PROJECT=tsconfig.test.json mocha --require ts-node/register tests/**/*.test.ts --timeout 30000"
57
56
  }
58
- }
57
+ }