{
  "name": "sepa-js-xml",
  "keywords": [
    "sepa",
    "xml"
  ],
  "version": "3.1.1",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "type": "module",
  "repository": {
    "url": "git+https://github.com/jerebtw/Sepa-JS-XML.git"
  },
  "author": "Jerebtw <jeremialp41@gmail.com>",
  "license": "MIT",
  "files": [
    "lib/**/*"
  ],
  "devDependencies": {
    "@swc/cli": "^0.4.0",
    "@swc/core": "^1.7.35",
    "@types/bun": "^1.1.11",
    "dayjs": "^1.11.13",
    "gh-pages": "^6.1.1",
    "gzip-size-cli": "^5.1.0",
    "prettier": "^3.3.3",
    "typedoc": "^0.26.8",
    "typescript": "^5.6.3"
  },
  "dependencies": {
    "ibantools": "^4.5.1",
    "xml-js": "^1.6.11"
  },
  "scripts": {
    "size": "echo index && gzip-size lib/index.js",
    "build": "pnpm run types && pnpm run compile",
    "compile": "swc ./src/index.ts -o lib/index.js --strip-leading-paths",
    "types": "tsc",
    "docs": "typedoc src/index.ts --name \"Sepa JS XML\"",
    "deploy:docs": "pnpm run docs && gh-pages -d docs",
    "format:test": "prettier --check \"src/*.{ts,tsx}\"",
    "format:write": "prettier --write \"src/*.{ts,tsx}\"",
    "test": "bun test && pnpm run format:test",
    "preversion": "pnpm run test",
    "version": "pnpm run format:write && git add -A src",
    "postversion": "git push && git push --tags"
  }
}