{
  "name": "@swishapp/node",
  "version": "0.24.0",
  "description": "JS library to integrate Swish on a Node.js server.",
  "author": "Swish",
  "license": "UNLICENSED",
  "homepage": "https://developers.swish.app/libraries/node.js",
  "type": "module",
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "node esbuild.js && tsc -p tsconfig.build.json",
    "dev": "node esbuild.js --watch && tsc -p tsconfig.build.json",
    "clean": "rimraf dist",
    "test": "jest",
    "test:watch": "jest --watch",
    "prepublishOnly": "npm run clean && npm run build"
  },
  "dependencies": {
    "@swishapp/api-client": "0.15.0"
  },
  "devDependencies": {
    "@types/jest": "29.5.14",
    "@types/node": "22.15.3",
    "esbuild": "0.25.2",
    "jest": "29.7.0",
    "rimraf": "6.0.1",
    "ts-jest": "29.3.2",
    "ts-node": "10.9.2",
    "typescript": "5.8.3"
  },
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "module": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "default": "./dist/index.js"
    }
  },
  "files": [
    "dist/**/*.*",
    "README.md"
  ],
  "keywords": [
    "swish",
    "shopify",
    "js"
  ]
}
