UNPKG

x402x-facilitator

Version:

X402 Payment Facilitator for handling payment settlements

49 lines 1.17 kB
{ "name": "x402x-facilitator", "version": "0.0.1-beta.12", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "keywords": [ "x402", "payment", "facilitator" ], "license": "Apache-2.0", "description": "X402 Payment Facilitator for handling payment settlements", "devDependencies": { "@types/node": "^22.13.4", "tsup": "^8.4.0", "tsx": "^4.19.2", "typescript": "^5.7.3", "vitest": "^3.0.5" }, "dependencies": { "x402x": "^0.0.1-beta.4" }, "exports": { ".": { "import": { "types": "./dist/index.d.mts", "default": "./dist/index.mjs" }, "require": { "types": "./dist/index.d.ts", "default": "./dist/index.js" } } }, "files": [ "dist" ], "scripts": { "build": "tsup", "test": "vitest run", "test:watch": "vitest", "watch": "tsc --watch", "format": "prettier -c .prettierrc --write \"**/*.{ts,js,cjs,json,md}\"", "format:check": "prettier -c .prettierrc --check \"**/*.{ts,js,cjs,json,md}\"", "lint": "eslint . --ext .ts --fix", "lint:check": "eslint . --ext .ts" } }