-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.93 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 2.93 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
{
"name": "@quicknode/mpp",
"version": "0.2.0",
"description": "Quicknode payment methods for MPP (Machine Payments Protocol)",
"license": "MIT",
"type": "module",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/quiknode-labs/mpp.git"
},
"homepage": "https://github.com/quiknode-labs/mpp#readme",
"bugs": {
"url": "https://github.com/quiknode-labs/mpp/issues"
},
"engines": {
"node": ">=22"
},
"files": [
"dist",
"src",
"!src/**/*.test.ts",
"!src/__tests__"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./client": {
"types": "./dist/client/index.d.ts",
"default": "./dist/client/index.js"
},
"./client/authorization": {
"types": "./dist/client/authorization.d.ts",
"default": "./dist/client/authorization.js"
},
"./client/hash": {
"types": "./dist/client/hash.d.ts",
"default": "./dist/client/hash.js"
},
"./client/permit2": {
"types": "./dist/client/permit2.d.ts",
"default": "./dist/client/permit2.js"
},
"./server": {
"types": "./dist/server/index.d.ts",
"default": "./dist/server/index.js"
},
"./server/replay": {
"types": "./dist/server/replay.d.ts",
"default": "./dist/server/replay.js"
},
"./server/verifiers/authorization": {
"types": "./dist/server/verifiers/authorization.d.ts",
"default": "./dist/server/verifiers/authorization.js"
},
"./server/verifiers/hash": {
"types": "./dist/server/verifiers/hash.d.ts",
"default": "./dist/server/verifiers/hash.js"
},
"./server/verifiers/permit2": {
"types": "./dist/server/verifiers/permit2.d.ts",
"default": "./dist/server/verifiers/permit2.js"
},
"./constants": {
"types": "./dist/constants.d.ts",
"default": "./dist/constants.js"
}
},
"scripts": {
"sync-version": "genversion --esm --source ./package.json --force src/internal/version.ts",
"prebuild": "npm run sync-version",
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"test": "node --import tsx/esm --test",
"lint": "biome check src",
"lint:fix": "biome check --write src",
"format": "biome format --write src",
"verify": "npm run sync-version && npm run lint && npm run typecheck && npm run test && npm run build",
"prepare": "simple-git-hooks && npm run build"
},
"simple-git-hooks": {
"pre-commit": "npm run verify"
},
"peerDependencies": {
"mppx": ">=0.3.15"
},
"dependencies": {
"viem": "^2.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.0.0",
"@types/node": "^22.0.0",
"genversion": "^3.2.0",
"mppx": ">=0.3.15",
"simple-git-hooks": "^2.11.0",
"tsx": "^4.0.0",
"typescript": "^5.9.0"
},
"keywords": [
"mpp",
"evm",
"quicknode",
"payments",
"402",
"usdc",
"agent"
]
}