@zauthx402/sdk 0.1.1

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,71 @@
1
+ {
2
+ "name": "@zauthx402/sdk",
3
+ "version": "0.1.1",
4
+ "description": "Monitoring, verification, and refund SDK for x402 payment endpoints",
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
+ "./middleware": {
15
+ "types": "./dist/middleware/index.d.ts",
16
+ "import": "./dist/middleware/index.mjs",
17
+ "require": "./dist/middleware/index.js"
18
+ }
19
+ },
20
+ "files": [
21
+ "dist",
22
+ "README.md"
23
+ ],
24
+ "scripts": {
25
+ "build": "tsup",
26
+ "dev": "tsup --watch",
27
+ "test": "vitest",
28
+ "test:run": "vitest run",
29
+ "lint": "eslint src --ext .ts",
30
+ "typecheck": "tsc --noEmit",
31
+ "prepublishOnly": "npm run build"
32
+ },
33
+ "keywords": [
34
+ "x402",
35
+ "payment",
36
+ "monitoring",
37
+ "verification",
38
+ "crypto",
39
+ "api",
40
+ "middleware"
41
+ ],
42
+ "author": "zauthx402",
43
+ "license": "MIT",
44
+ "repository": {
45
+ "type": "git",
46
+ "url": "https://github.com/zauthx402/zauthSDK"
47
+ },
48
+ "engines": {
49
+ "node": ">=18.0.0"
50
+ },
51
+ "peerDependencies": {
52
+ "express": ">=4.0.0"
53
+ },
54
+ "peerDependenciesMeta": {
55
+ "express": {
56
+ "optional": true
57
+ }
58
+ },
59
+ "dependencies": {},
60
+ "optionalDependencies": {
61
+ "viem": "^2.0.0"
62
+ },
63
+ "devDependencies": {
64
+ "@types/express": "^4.17.21",
65
+ "@types/node": "^20.10.0",
66
+ "express": "^4.18.2",
67
+ "tsup": "^8.0.0",
68
+ "typescript": "^5.3.0",
69
+ "vitest": "^1.0.0"
70
+ }
71
+ }