-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.63 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.63 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": "paymcp",
"version": "0.8.3",
"description": "Provider-agnostic payment layer for MCP (Model Context Protocol) tools and agents.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./providers": {
"types": "./dist/providers/index.d.ts",
"import": "./dist/providers/index.js",
"require": "./dist/providers/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts src/providers/index.ts --format cjs,esm --dts --clean --sourcemap --external zod",
"watch": "npm run build -- --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"author": "PayMCP Open Source Contributors",
"license": "MIT",
"devDependencies": {
"@types/node": "^24.9.1",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/utils": "^3.2.4",
"zod": "^3.23.4 || ^4.1.13",
"tsup": "^8.5.0",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"peerDependencies": {
"zod": ">=3.23.4 <5"
},
"sideEffects": false,
"keywords": [
"payments",
"mcp",
"typescript"
],
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PayMCP/paymcp-ts"
},
"packageManager": "pnpm@10.12.4+sha512.5ea8b0deed94ed68691c9bad4c955492705c5eeb8a87ef86bc62c74a26b037b08ff9570f108b2e4dbd1dd1a9186fea925e527f141c648e85af45631074680184"
}