@kasarlabs/openzeppelin-mcp 0.1.3 → 0.1.4

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.
@@ -4,11 +4,11 @@ export declare const accountDetailsSchema: z.ZodObject<{
4
4
  publicKey: z.ZodString;
5
5
  privateKey: z.ZodString;
6
6
  }, "strip", z.ZodTypeAny, {
7
- contractAddress: string;
8
7
  publicKey: string;
8
+ contractAddress: string;
9
9
  privateKey: string;
10
10
  }, {
11
- contractAddress: string;
12
11
  publicKey: string;
12
+ contractAddress: string;
13
13
  privateKey: string;
14
14
  }>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kasarlabs/openzeppelin-mcp",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "main": "index.js",
5
5
  "type": "module",
6
6
  "bin": {
@@ -10,22 +10,28 @@
10
10
  "build": "tsc && chmod 755 build/index.js",
11
11
  "clean": "rm -rf build",
12
12
  "clean:all": "rm -rf build node_modules",
13
- "start": "node build/index.js"
13
+ "start": "node build/index.js",
14
+ "test": "NODE_OPTIONS=--experimental-vm-modules jest",
15
+ "test:e2e": "NODE_OPTIONS=--experimental-vm-modules jest __tests__/e2e"
14
16
  },
15
17
  "files": [
16
18
  "build"
17
19
  ],
18
20
  "dependencies": {
19
- "@kasarlabs/ask-starknet-core": "0.1.3",
21
+ "@kasarlabs/ask-starknet-core": "0.1.4",
20
22
  "@langchain/core": "^0.3.42",
21
23
  "@modelcontextprotocol/sdk": "1.22.0",
22
24
  "dotenv": "^16.4.7",
23
- "starknet": "8.6.0",
25
+ "starknet": "~8.9.0",
24
26
  "winston": "^3.17.0",
25
27
  "zod": "^3.24.2"
26
28
  },
27
29
  "devDependencies": {
30
+ "@jest/globals": "^29.7.0",
31
+ "@types/jest": "^29.5.12",
28
32
  "@types/node": "^22.13.10",
33
+ "jest": "^29.7.0",
34
+ "ts-jest": "^29.1.2",
29
35
  "typescript": "^5.8.2"
30
36
  },
31
37
  "keywords": [
@@ -39,5 +45,5 @@
39
45
  "publishConfig": {
40
46
  "access": "public"
41
47
  },
42
- "gitHead": "bfb4d4b055bbfa15b8e745d414adf52ac5e158fb"
48
+ "gitHead": "0799e2b085e950e5d102822d71a6b122290e8c38"
43
49
  }