{
  "name": "becomes",
  "version": "0.1.1",
  "description": "Type-safe schema evolution for long-lived TypeScript documents.",
  "keywords": [
    "documents",
    "migration",
    "schema",
    "schema-evolution",
    "standard-schema",
    "typescript",
    "versioning"
  ],
  "homepage": "https://github.com/agorischek/becomes#readme",
  "bugs": {
    "url": "https://github.com/agorischek/becomes/issues"
  },
  "license": "MIT",
  "author": "Alex Gorischek <alex.gorischek@gmail.com>",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/agorischek/becomes.git"
  },
  "files": [
    "assets",
    "dist",
    "CHANGELOG.md",
    "LICENSE",
    "README.md"
  ],
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    }
  },
  "scripts": {
    "build": "rm -rf dist && tsc -p tsconfig.json",
    "dev": "bun --watch src/index.ts",
    "format": "oxfmt .",
    "format:check": "oxfmt --check .",
    "lint": "oxlint .",
    "test": "bun test",
    "test:coverage": "rm -rf coverage && bun test --coverage --coverage-reporter=lcov --coverage-dir=coverage && bun scripts/check-coverage.ts",
    "typecheck:tests": "tsc --noEmit -p tsconfig.test.json",
    "typecheck:types": "tsc --noEmit -p tsconfig.type-tests.json",
    "pack:dry-run": "npm pack --dry-run --ignore-scripts",
    "check": "bun run format:check && bun run lint && bun run build && bun run typecheck:tests && bun run typecheck:types && bun run test:coverage",
    "prepack": "bun run check"
  },
  "devDependencies": {
    "@types/bun": "^1.3.14",
    "oxfmt": "^0.62.0",
    "oxlint": "^1.67.0",
    "typescript": "^7.0.2"
  },
  "packageManager": "bun@1.3.10"
}
