@perkos/scheme-deferred 1.0.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/dist/index.d.mts +344 -0
- package/dist/index.d.ts +344 -0
- package/dist/index.js +376 -0
- package/dist/index.mjs +347 -0
- package/package.json +47 -0
package/package.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@perkos/scheme-deferred",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "EIP-712 Voucher-based deferred payment verification utilities for x402 deferred scheme",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.mjs",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.mjs",
|
|
12
|
+
"require": "./dist/index.js"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist"
|
|
17
|
+
],
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "tsup src/index.ts --format cjs,esm --dts",
|
|
20
|
+
"prepublishOnly": "npm run build"
|
|
21
|
+
},
|
|
22
|
+
"keywords": [
|
|
23
|
+
"x402",
|
|
24
|
+
"payment",
|
|
25
|
+
"deferred",
|
|
26
|
+
"voucher",
|
|
27
|
+
"EIP-712",
|
|
28
|
+
"ethereum",
|
|
29
|
+
"web3",
|
|
30
|
+
"crypto"
|
|
31
|
+
],
|
|
32
|
+
"author": "PerkOS",
|
|
33
|
+
"license": "MIT",
|
|
34
|
+
"repository": {
|
|
35
|
+
"type": "git",
|
|
36
|
+
"url": "https://github.com/PerkOS-xyz/pkg-scheme-deferred"
|
|
37
|
+
},
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"@perkos/types-x402": "^1.0.0",
|
|
40
|
+
"@perkos/util-chains": "^1.0.0",
|
|
41
|
+
"viem": "^2.28.2"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"tsup": "^8.5.0",
|
|
45
|
+
"typescript": "^5.8.3"
|
|
46
|
+
}
|
|
47
|
+
}
|