-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 824 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 824 Bytes
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": "morphcli",
"version": "0.1.0",
"description": "Morph L2 CLI — chain operations for AI agents and developers",
"main": "dist/index.js",
"bin": {
"morph-agent": "dist/index.js"
},
"type": "commonjs",
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsup",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"morph",
"l2",
"cli",
"web3"
],
"author": "",
"license": "MIT",
"packageManager": "pnpm@10.27.0",
"dependencies": {
"@noble/curves": "^2.0.1",
"commander": "^14.0.3",
"viem": "^2.47.6"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.1.1",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vitest": "^4.1.1"
}
}