-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.15 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.15 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
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"@rolldown/binding-darwin-arm64",
"unrs-resolver"
],
"overrides": {
"libsodium-wrappers-sumo": "0.8.2"
}
},
"name": "cardano402",
"version": "1.1.0",
"description": "Open-source x402 payment facilitator and resource server SDK for Cardano. Agent-native, registry-free.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./sdk": {
"import": "./dist/sdk.js",
"types": "./dist/sdk.d.ts"
}
},
"files": [
"dist/",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "tsx watch --env-file-if-exists=.env --inspect src/index.ts",
"build": "tsup && pnpm build:landing",
"build:landing": "node scripts/build-landing.mjs",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write \"src/**/*.ts\"",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:logs": "docker-compose logs -f",
"prepare": "husky",
"prepublishOnly": "pnpm build"
},
"keywords": [
"x402",
"cardano",
"payment",
"facilitator",
"agent",
"mcp",
"stripe-for-agents"
],
"author": "",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/MorganOnCode/cardano402.git"
},
"bugs": {
"url": "https://github.com/MorganOnCode/cardano402/issues"
},
"homepage": "https://github.com/MorganOnCode/cardano402#readme",
"packageManager": "pnpm@10.8.1",
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@blockfrost/blockfrost-js": "^6.1.1",
"@fastify/cors": "^11.2.0",
"@fastify/error": "^4.2.0",
"@fastify/helmet": "^13.0.2",
"@fastify/multipart": "^9.4.0",
"@fastify/rate-limit": "^10.3.0",
"@fastify/static": "^9.1.3",
"@fastify/swagger": "^9.7.0",
"@fastify/swagger-ui": "^5.2.6",
"@lucid-evolution/lucid": "0.4.29",
"@lucid-evolution/provider": "0.1.90",
"@sentry/node": "^10.53.1",
"fastify": "^5.8.5",
"fastify-plugin": "^5.1.0",
"fastify-type-provider-zod": "^6.1.0",
"ioredis": "^5.10.1",
"pino": "^10.3.1",
"prom-client": "^15.1.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^25.8.0",
"@types/react": "^18.3",
"@types/react-dom": "^18.3",
"@vitest/coverage-v8": "^4.0.18",
"esbuild": "^0.28.0",
"eslint": "^9.39.4",
"eslint-config-airbnb-extended": "^3.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^18.0.1",
"husky": "^9.1.7",
"lint-staged": "^17.0.4",
"pino-pretty": "^13.1.3",
"prettier": "^3.8.3",
"tsup": "^8.5.1",
"tsx": "^4.22.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.3",
"vitest": "^4.0.18"
}
}