{
  "name": "quickbundle",
  "version": "2.12.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-commonjs": "^28.0.3",
    "@rollup/plugin-json": "^6.1.0",
    "@rollup/plugin-node-resolve": "^16.0.1",
    "@rollup/plugin-url": "^8.0.2",
    "@swc/core": "^1.11.9",
    "decompress": "^4.2.1",
    "gzip-size": "^7.0.0",
    "rollup": "^4.35.0",
    "rollup-plugin-dts": "^6.1.1",
    "rollup-plugin-node-externals": "^8.0.0",
    "rollup-plugin-swc3": "^0.12.1",
    "termost": "^1.4.0"
  },
  "devDependencies": {
    "@types/decompress": "4.2.7",
    "@types/node": "22.13.10"
  },
  "peerDependencies": {
    "typescript": "^4.7.0 || ^5.0.0"
  },
  "peerDependenciesMeta": {
    "typescript": {
      "optional": true
    }
  },
  "scripts": {
    "build": "rollup --config ./bundler.config.ts --configPlugin rollup-plugin-swc3",
    "test": "exit 0",
    "watch": "rollup --watch --config ./bundler.config.ts --configPlugin rollup-plugin-swc3"
  }
}