{
	"author": "QBitFlow",
	"bugs": {
		"url": "https://github.com/qbitflow/qbitflow-js-sdk/issues"
	},
	"dependencies": {
		"axios": "^1.13.1",
		"ws": "^8.18.3"
	},
	"description": "Official JavaScript/TypeScript SDK for QBitFlow - Next Generation Crypto Payment Processing",
	"devDependencies": {
		"@types/jest": "^30.0.0",
		"@types/node": "^24.9.2",
		"@types/ws": "^8.18.1",
		"@typescript-eslint/eslint-plugin": "^8.46.2",
		"@typescript-eslint/parser": "^8.46.2",
		"eslint": "^9.38.0",
		"jest": "^30.2.0",
		"prettier": "^3.6.2",
		"ts-jest": "^29.4.5",
		"ts-node": "^10.9.2",
		"typescript": "^5.9.3"
	},
	"engines": {
		"node": ">=14.0.0"
	},
	"exports": {
		".": {
			"import": "./dist/esm/index.js",
			"require": "./dist/cjs/index.js",
			"types": "./dist/types/index.d.ts"
		}
	},
	"files": [
		"dist",
		"README.md",
		"TRADEMARKS.md",
		"COMPLIANCE.md",
		"QUICKSTART.md",
		"SECURITY.md",
		"LICENSE"
	],
	"homepage": "https://github.com/qbitflow/qbitflow-js-sdk#readme",
	"keywords": [
		"qbitflow",
		"cryptocurrency",
		"crypto",
		"payment",
		"payment-processing",
		"api",
		"sdk",
		"bitcoin",
		"solana",
		"ethereum",
		"blockchain",
		"subscription",
		"payment-gateway",
		"recurring-billing",
		"api-client",
		"typescript"
	],
	"license": "MPL-2.0",
	"main": "./dist/cjs/index.js",
	"module": "./dist/esm/index.js",
	"name": "qbitflow",
	"repository": {
		"type": "git",
		"url": "https://github.com/qbitflow/qbitflow-js-sdk.git"
	},
	"scripts": {
		"build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:types",
		"build:cjs": "tsc --project tsconfig.cjs.json",
		"build:esm": "tsc --project tsconfig.esm.json && echo '{\"type\":\"module\"}' > dist/esm/package.json",
		"build:types": "tsc --project tsconfig.json --declaration --emitDeclarationOnly --outDir dist/types",
		"clean": "rm -rf dist",
		"format": "prettier --write \"src/**/*.ts\"",
		"lint": "eslint src --ext .ts",
		"prepublishOnly": "npm run build && npm test",
		"test": "jest",
		"test:coverage": "jest --coverage",
		"test:watch": "jest --watch"
	},
	"types": "./dist/types/index.d.ts",
	"version": "1.2.1"
}