-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.02 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
{
"name": "be-metabot",
"version": "0.1.0",
"private": false,
"license": "MIT",
"author": "Sunny Fung",
"description": "Open-source MetaWeb runtime, CLI, and host skill packs for MetaBots.",
"type": "commonjs",
"engines": {
"node": ">=20 <25"
},
"bin": {
"metabot": "dist/cli/main.js"
},
"scripts": {
"build": "npx rimraf dist && tsc -p tsconfig.json",
"build:skillpacks": "node scripts/build-metabot-skillpacks.mjs",
"test": "npm run build && node --test tests/**/*.test.mjs",
"test:contracts": "npm run build && node --test tests/contracts/*.test.mjs",
"verify": "npm run build && npm run build:skillpacks && node --test tests/**/*.test.mjs"
},
"dependencies": {
"@metalet/utxo-wallet-service": "^0.3.33-beta.5",
"@scure/bip39": "^1.6.0",
"crypto-js": "^4.2.0",
"meta-contract": "^0.4.16",
"socket.io-client": "^4.8.1"
},
"devDependencies": {
"@types/crypto-js": "^4.2.2",
"@types/node": "^24.0.0",
"rimraf": "^5.0.5",
"typescript": "^5.7.3"
}
}