{
  "name": "@furryr/typescript-runtime",
  "version": "1.0.8",
  "description": "Run TypeScript directly in your browser",
  "type": "module",
  "main": "dist/typescript-runtime.global.js",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/FurryR/typescript-runtime.git"
  },
  "homepage": "https://github.com/FurryR/typescript-runtime#readme",
  "bugs": {
    "url": "https://github.com/FurryR/typescript-runtime/issues"
  },
  "files": [
    "dist"
  ],
  "keywords": [
    "typescript",
    "tsx",
    "browser",
    "babel",
    "runtime"
  ],
  "author": "",
  "license": "MIT",
  "devEngines": {
    "packageManager": {
      "name": "pnpm",
      "version": "^11.5.2",
      "onFail": "download"
    }
  },
  "dependencies": {
    "@babel/generator": "^7.28.5",
    "@babel/parser": "^7.28.5",
    "@babel/traverse": "^7.28.5",
    "@babel/types": "^7.28.5"
  },
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@types/babel__generator": "^7.27.0",
    "@types/babel__traverse": "^7.28.0",
    "eslint": "^10.4.1",
    "prettier": "^3.5.3",
    "tsup": "^8.5.1",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.60.1"
  },
  "scripts": {
    "build": "tsup --minify",
    "dev": "tsup",
    "typecheck": "tsc --noEmit",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "check": "pnpm typecheck && pnpm lint && pnpm build",
    "example": "python3 -m http.server 8080",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "pack:dry": "pnpm pack --dry-run",
    "publish:npm": "pnpm publish --access public"
  }
}