-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.59 KB
/
package.json
File metadata and controls
71 lines (71 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
71
{
"name": "@coinbase/payments-mcp",
"version": "1.0.5",
"description": "NPX installer for Payments MCP",
"main": "dist/cli.js",
"bin": {
"payments-mcp": "bin/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/cli.ts",
"prepublishOnly": "npm run build",
"test": "jest",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts"
},
"keywords": [
"mcp",
"x402",
"payments",
"coinbase",
"installer"
],
"repository": {
"type": "git",
"url": "https://github.com/coinbase/payments-mcp"
},
"bugs": {
"url": "https://github.com/coinbase/payments-mcp/issues"
},
"homepage": "https://github.com/coinbase/payments-mcp#readme",
"author": "Coinbase",
"license": "Apache-2.0",
"dependencies": {
"axios": "^1.6.0",
"chalk": "^4.1.2",
"cli-progress": "^3.12.0",
"commander": "^11.1.0",
"fs-extra": "^11.1.1",
"inquirer": "^8.2.5",
"semver": "^7.5.4",
"yauzl": "^2.10.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^8.2.5",
"@types/jest": "^29.5.12",
"@types/node": "^20.10.0",
"@types/semver": "^7.5.6",
"@types/yauzl": "^2.10.3",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.55.0",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.0",
"typescript": "^5.3.0"
},
"files": [
"dist/**/*",
"bin/**/*",
"README.md"
],
"prettier": {
"singleQuote": true
},
"engines": {
"node": ">=22.0.0"
}
}