-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.57 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.57 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@alchemy/cli",
"version": "0.5.2",
"description": "Alchemy CLI — interact with blockchain data",
"type": "module",
"bin": {
"alchemy": "./dist/index.js"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"postinstall": "node ./scripts/postinstall.cjs",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:e2e": "pnpm build && vitest run --config vitest.e2e.config.ts",
"test:watch": "vitest",
"lint": "tsc --noEmit",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm build && changeset publish"
},
"keywords": [
"alchemy",
"blockchain",
"ethereum",
"cli"
],
"files": [
"dist",
"README.md",
"scripts/postinstall.cjs"
],
"repository": {
"type": "git",
"url": "https://github.com/alchemyplatform/alchemy-cli.git"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"engines": {
"node": ">=22"
},
"dependencies": {
"@alchemy/x402": "^0.4.0",
"@noble/hashes": "^2.0.1",
"cli-table3": "^0.6.5",
"commander": "^14.0.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@types/node": "^25.3.0",
"@vitest/coverage-v8": "^4.0.18",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"packageManager": "pnpm@10.18.2+sha512.9fb969fa749b3ade6035e0f109f0b8a60b5d08a1a87fdf72e337da90dcc93336e2280ca4e44f2358a649b83c17959e9993e777c2080879f3801e6f0d999ad3dd"
}