{
  "name": "quickbundle",
  "version": "3.0.0",
  "description": "The zero-configuration transpiler and bundler for the web",
  "keywords": [
    "library",
    "bundle",
    "build",
    "compiler",
    "transpiler",
    "module",
    "fast",
    "esbuild",
    "swc",
    "microbundle"
  ],
  "repository": {
    "type": "git",
    "url": "git@github.com:adbayb/quickbundle.git",
    "directory": "quickbundle"
  },
  "license": "MIT",
  "author": {
    "name": "Ayoub Adib",
    "email": "adbayb@gmail.com",
    "url": "https://twitter.com/adbayb"
  },
  "type": "module",
  "exports": {
    ".": {
      "source": "./src/index.ts",
      "default": "./dist/index.js"
    }
  },
  "bin": {
    "quickbundle": "./bin/index.js"
  },
  "files": [
    "bin",
    "dist"
  ],
  "dependencies": {
    "@rollup/plugin-url": "^8.0.2",
    "decompress": "^4.2.1",
    "gzip-size": "^7.0.0",
    "rolldown": "^1.0.2",
    "rolldown-plugin-dts": "^0.25.1",
    "rollup-plugin-node-externals": "^9.0.1",
    "termost": "^1.9.0"
  },
  "devDependencies": {
    "@types/decompress": "4.2.7",
    "@types/node": "24.12.4"
  },
  "peerDependencies": {
    "typescript": "^4.7.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
  },
  "peerDependenciesMeta": {
    "typescript": {
      "optional": true
    }
  },
  "scripts": {
    "build": "rolldown --config ./bundler.config.ts",
    "test": "exit 0",
    "watch": "rolldown --watch --config ./bundler.config.ts"
  }
}