@cardql/core
Version:
CardQL core SDK for payment processing - cross-platform shared logic, auth and data access
57 lines (56 loc) • 1.26 kB
JSON
{
"name": "@cardql/core",
"version": "1.0.1",
"description": "CardQL core SDK for payment processing - cross-platform shared logic, auth and data access",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist/**/*",
"src/**/*"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"clean": "rimraf dist",
"typecheck": "tsc --noEmit"
},
"keywords": [
"cardql",
"payments",
"graphql",
"sdk",
"fintech"
],
"author": "CardQL Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cardql/cardql.git",
"directory": "sdk/core"
},
"dependencies": {
"graphql": "^16.9.0",
"graphql-request": "^7.1.2",
"cross-fetch": "^4.0.0"
},
"devDependencies": {
"@types/node": "^22.10.2",
"typescript": "^5.8.3",
"tsup": "^8.3.5",
"rimraf": "^6.0.1"
},
"peerDependencies": {
"graphql": "^16.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}