-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 928 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 928 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
40
41
{
"name": "@grailsmarket/cli",
"version": "0.1.0",
"description": "CLI for the Grails ENS Marketplace API",
"type": "module",
"bin": {
"grails": "./dist/index.js"
},
"files": ["dist"],
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsup",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"coverage": "tsx scripts/check-coverage.ts",
"prepublishOnly": "npm run typecheck && npm run build"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"engines": {
"node": ">=20"
},
"dependencies": {
"@walletconnect/sign-client": "^2.23.8",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"dotenv": "^17.3.1",
"qrcode-terminal": "^0.12.0",
"siwe": "^2.3.2",
"viem": "^2.21.0"
},
"devDependencies": {
"@types/node": "^20.11.0",
"tsup": "^8.0.0",
"tsx": "^4.7.0",
"typescript": "^5.3.0",
"vitest": "^1.2.0"
}
}