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
64 lines (64 loc) · 1.37 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.37 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": "@mppsol/agent",
"version": "0.1.0-draft.2",
"description": "MPP.sol — Client SDK for paying MPP-priced resources via Solana. Session mode end-to-end; direct mode primitives.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.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",
"agents",
"client-sdk"
],
"homepage": "https://mppsol.org",
"bugs": {
"url": "https://github.com/mppsol/agent/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mppsol/agent.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"
},
"devDependencies": {
"typescript": "^5.5.0",
"vitest": "^2.0.0"
}
}