-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@stellar/mpp",
"version": "0.5.1",
"description": "Stellar blockchain payment method for the Machine Payments Protocol (MPP)",
"type": "module",
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=20"
},
"sideEffects": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./charge": {
"types": "./dist/charge/index.d.ts",
"default": "./dist/charge/index.js"
},
"./charge/client": {
"types": "./dist/charge/client/index.d.ts",
"default": "./dist/charge/client/index.js"
},
"./charge/server": {
"types": "./dist/charge/server/index.d.ts",
"default": "./dist/charge/server/index.js"
},
"./channel": {
"types": "./dist/channel/index.d.ts",
"default": "./dist/channel/index.js"
},
"./channel/client": {
"types": "./dist/channel/client/index.d.ts",
"default": "./dist/channel/client/index.js"
},
"./channel/server": {
"types": "./dist/channel/server/index.d.ts",
"default": "./dist/channel/server/index.js"
},
"./env": {
"types": "./dist/env.d.ts",
"default": "./dist/env.js"
}
},
"files": [
"dist"
],
"scripts": {
"prepare": "tsc",
"build": "tsc",
"check:types": "tsc --noEmit",
"test": "vitest",
"test:integration": "vitest run --config vitest.integration.config.ts",
"demo:charge-server": "tsx examples/charge-server.ts",
"demo:charge-client": "tsx examples/charge-client.ts",
"demo:channel-server": "tsx examples/channel-server.ts",
"demo:channel-client": "tsx examples/channel-client.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"zod": "^4.3.6"
},
"peerDependencies": {
"@stellar/stellar-sdk": "^15.0.1",
"mppx": "^0.4.11"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@stellar/stellar-sdk": "^15.0.1",
"@types/express": "^5.0.6",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.4",
"eslint": "^10.2.0",
"express": "^5.2.1",
"express-rate-limit": "^8.3.2",
"helmet": "^8.1.0",
"mppx": "^0.4.12",
"pino": "^10.3.1",
"pino-http": "^11.0.0",
"prettier": "^3.8.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.1",
"vitest": "^4.1.4"
},
"pnpm": {
"overrides": {
"axios": "^1.15.0",
"vite": "^7.3.2"
}
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stellar/stellar-mpp-sdk.git"
},
"homepage": "https://github.com/stellar/stellar-mpp-sdk#readme",
"keywords": [
"stellar",
"blockchain",
"payments",
"mpp",
"machine-payments",
"soroban",
"payment-channels",
"typescript",
"sdk",
"402",
"agentic-payments",
"mppx"
]
}