-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.03 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "moltbot-starter-kit",
"version": "1.0.0",
"description": "MultiversX Agent Starter Kit (OpenClaw + x402)",
"main": "dist/index.js",
"scripts": {
"setup": "bash setup.sh",
"build": "tsc",
"start": "node dist/index.js",
"register": "ts-node scripts/register.ts",
"update-manifest": "ts-node scripts/update_manifest.ts",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"dependencies": {
"@multiversx/sdk-core": "^15.3.2",
"@multiversx/sdk-network-providers": "^2.9.3",
"@multiversx/sdk-wallet": "^4.6.0",
"axios": "^1.6.0",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^22.7.5",
"eslint": "^9.39.2",
"gts": "^7.0.0",
"jest": "^29.0.0",
"ts-jest": "^29.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.6.3"
}
}