forked from stephancill/knox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.59 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.59 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
63
64
65
66
67
68
69
70
{
"name": "knox-wallet",
"version": "0.0.4",
"description": "CLI payment client for x402 and MPP paid APIs",
"module": "src/cli.ts",
"type": "module",
"license": "MIT",
"author": "Stephancill",
"homepage": "https://github.com/stephancill/knox",
"bugs": {
"url": "https://github.com/stephancill/knox/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/stephancill/knox"
},
"keywords": [
"cli",
"crypto",
"wallet",
"x402",
"mpp",
"payments"
],
"engines": {
"bun": ">=1.3.0"
},
"files": [
"src",
"docs",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"bin": {
"knox": "src/cli.ts"
},
"scripts": {
"start": "bun run src/cli.ts",
"test": "bun test src/**/*.test.ts",
"lint": "bunx @biomejs/biome lint .",
"format:check": "bunx @biomejs/biome check --formatter-enabled=true --linter-enabled=false .",
"format": "bunx @biomejs/biome format --write .",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish --provenance",
"typecheck": "bunx tsc --noEmit",
"prepublishOnly": "bun run typecheck",
"prepare": "husky"
},
"dependencies": {
"@x402/core": "^2.8.0",
"@x402/evm": "^2.8.0",
"@x402/fetch": "^2.8.0",
"commander": "^14.0.3",
"mppx": "^0.4.11",
"viem": "^2.38.3"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.30.0",
"@types/bun": "latest",
"husky": "^9.1.7"
},
"peerDependencies": {
"typescript": "^5"
}
}