{
  "name": "uint8-base64",
  "version": "2.0.0",
  "description": "Encode and decode base64 to and from Uint8Array",
  "type": "module",
  "exports": {
    ".": "./lib/index.js"
  },
  "keywords": [],
  "author": "Luc Patiny",
  "license": "MIT",
  "files": [
    "lib",
    "src"
  ],
  "scripts": {
    "build": "npm run prepack && cheminfo-build --entry lib/index.js --root UintBase64",
    "check-types": "tsc --noEmit",
    "clean": "rimraf coverage lib",
    "eslint": "eslint src",
    "eslint-fix": "eslint src --fix",
    "prepack": "npm run tsc",
    "prettier": "prettier --check src",
    "prettier-write": "prettier --write src",
    "test": "npm run test-only && npm run check-types && npm run eslint && npm run prettier",
    "test-only": "vitest run --coverage",
    "tsc": "npm run clean && npm run tsc-build",
    "tsc-build": "tsc --project tsconfig.build.json"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/cheminfo/uint8-base64.git"
  },
  "bugs": {
    "url": "https://github.com/cheminfo/uint8-base64/issues"
  },
  "homepage": "https://github.com/cheminfo/uint8-base64#readme",
  "devDependencies": {
    "@types/node": "^25.9.1",
    "@vitest/coverage-v8": "^4.1.7",
    "@zakodium/tsconfig": "^1.0.5",
    "cheminfo-build": "^1.3.2",
    "eslint": "^9.39.2",
    "eslint-config-cheminfo-typescript": "^22.0.0",
    "prettier": "^3.8.3",
    "rimraf": "^6.1.3",
    "typescript": "^6.0.3",
    "vitest": "^4.1.7"
  }
}
