@pyrimid/sdk 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,79 @@
1
+ {
2
+ "name": "@pyrimid/sdk",
3
+ "version": "0.1.0",
4
+ "description": "Onchain monetization infrastructure for agent-to-agent commerce on Base",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js"
12
+ },
13
+ "./resolver": {
14
+ "types": "./dist/resolver.d.ts",
15
+ "import": "./dist/resolver.js"
16
+ },
17
+ "./mcp-server": {
18
+ "types": "./dist/mcp-server.d.ts",
19
+ "import": "./dist/mcp-server.js"
20
+ },
21
+ "./middleware": {
22
+ "types": "./dist/middleware.d.ts",
23
+ "import": "./dist/middleware.js"
24
+ },
25
+ "./types": {
26
+ "types": "./dist/types.d.ts",
27
+ "import": "./dist/types.js"
28
+ }
29
+ },
30
+ "files": [
31
+ "dist",
32
+ "README.md"
33
+ ],
34
+ "scripts": {
35
+ "build": "tsc",
36
+ "dev": "tsc --watch",
37
+ "clean": "rm -rf dist",
38
+ "prepublishOnly": "npm run clean && npm run build"
39
+ },
40
+ "keywords": [
41
+ "pyrimid",
42
+ "agent",
43
+ "a2a",
44
+ "mcp",
45
+ "x402",
46
+ "affiliate",
47
+ "base",
48
+ "usdc",
49
+ "erc-8004",
50
+ "onchain"
51
+ ],
52
+ "author": "Pyrimid Protocol",
53
+ "license": "SEE LICENSE IN LICENSE",
54
+ "repository": {
55
+ "type": "git",
56
+ "url": "https://github.com/pyrimid/sdk"
57
+ },
58
+ "homepage": "https://pyrimid.xyz/docs",
59
+ "engines": {
60
+ "node": ">=18"
61
+ },
62
+ "dependencies": {},
63
+ "peerDependencies": {
64
+ "@modelcontextprotocol/sdk": ">=1.0.0",
65
+ "@x402/fetch": ">=0.0.1",
66
+ "zod": ">=3.20.0"
67
+ },
68
+ "peerDependenciesMeta": {
69
+ "@modelcontextprotocol/sdk": { "optional": true },
70
+ "@x402/fetch": { "optional": true },
71
+ "zod": { "optional": true }
72
+ },
73
+ "devDependencies": {
74
+ "@modelcontextprotocol/sdk": "^1.0.0",
75
+ "@x402/fetch": "^2.6.0",
76
+ "typescript": "^5.4.0",
77
+ "zod": "^3.22.0"
78
+ }
79
+ }