This repository was archived by the owner on May 7, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.6 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.6 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
{
"name": "@mppsol/server",
"version": "0.1.0-draft.3",
"description": "MPP.sol — HTTP middleware emitting 402 challenges and verifying Solana payments. Hono adapter included.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./hono": {
"types": "./dist/middleware.d.ts",
"import": "./dist/middleware.js"
}
},
"files": [
"dist/",
"src/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"mpp",
"machine-payments-protocol",
"solana",
"payments",
"stablecoin",
"usdc",
"402",
"x402",
"hono",
"middleware"
],
"homepage": "https://mppsol.org",
"bugs": {
"url": "https://github.com/mppsol/server/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mppsol/server.git"
},
"author": "psyto <saito.hiroyuki@gmail.com> (https://github.com/psyto)",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@mppsol/core": "0.1.0-draft.2",
"@noble/curves": "^1.4.0",
"@scure/base": "^1.1.6"
},
"peerDependencies": {
"hono": "^4.0.0"
},
"peerDependenciesMeta": {
"hono": { "optional": true }
},
"devDependencies": {
"hono": "^4.6.0",
"typescript": "^5.5.0",
"vitest": "^2.0.0"
}
}