-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.75 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
{
"name": "@x402/mcp",
"version": "2.20.0",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/cjs/index.d.ts",
"scripts": {
"start": "tsx --env-file=.env index.ts",
"test": "vitest run",
"test:integration": "vitest run --dir test/integration",
"test:watch": "vitest",
"build": "tsup",
"watch": "tsc --watch",
"format": "prettier -c .prettierrc --write \"**/*.{ts,js,cjs,json,md}\"",
"format:check": "prettier -c .prettierrc --check \"**/*.{ts,js,cjs,json,md}\"",
"lint": "eslint . --ext .ts --fix",
"lint:check": "eslint . --ext .ts"
},
"keywords": [],
"license": "Apache-2.0",
"author": "x402 Foundation",
"repository": "https://github.com/x402-foundation/x402",
"description": "x402 Payment Protocol",
"devDependencies": {
"@eslint/js": "^9.24.0",
"@types/node": "^22.13.4",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"@typescript-eslint/parser": "^8.29.1",
"@x402/evm": "workspace:~",
"eslint": "^9.24.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.6.9",
"eslint-plugin-prettier": "^5.2.6",
"express": "^4.21.2",
"prettier": "3.5.2",
"tsup": "^8.4.0",
"tsx": "^4.21.0",
"typescript": "^5.7.3",
"viem": "^2.48.11",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.5",
"vite": "^6.2.6"
},
"dependencies": {
"@x402/core": "workspace:~",
"@modelcontextprotocol/sdk": "^1.12.1",
"zod": "^3.24.2"
},
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.mts",
"default": "./dist/esm/index.mjs"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"files": [
"dist"
]
}