{
  "name": "@ilihub/string-to-base64",
  "version": "1.0.2",
  "publishConfig": {
    "access": "public"
  },
  "description": "Encode a string to base64",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist"
  ],
  "license": "MIT",
  "homepage": "https://code.ilihub.tech",
  "funding": "https://opencollective.com/ilihub",
  "repository": {
    "type": "git",
    "url": "https://github.com/ilihub/npm.git"
  },
  "bugs": {
    "url": "https://github.com/ilihub/npm/issues",
    "email": "contact@ilihub.tech"
  },
  "author": {
    "name": "ilihub",
    "email": "contact@ilihub.tech",
    "url": "https://github.com/ilihub"
  },
  "keywords": [
    "ilihub",
    "code",
    "string",
    "base64",
    "encode",
    "tools",
    "typescript",
    "functions",
    "utils"
  ],
  "tsup": {
    "treeshake": true,
    "splitting": true,
    "entry": [
      "src/index.ts"
    ],
    "format": [
      "cjs"
    ],
    "dts": true,
    "minify": true,
    "clean": true
  },
  "devDependencies": {
    "@types/jest": "^29.5.5",
    "@types/node": "^20.8.6",
    "jest": "^29.7.0",
    "ts-jest": "^29.1.1",
    "tsup": "^7.2.0",
    "typescript": "^5.2.2",
    "eslint-config-custom": "0.0.0",
    "tsconfig": "0.0.0"
  },
  "scripts": {
    "lint": "eslint \"**/*.ts*\"",
    "build": "tsup",
    "dev": "tsup --watch",
    "check-types": "tsc --noEmit",
    "test": "jest --config jestconfig.json --maxWorkers=50% --passWithNoTests"
  }
}