{
  "name": "vite-plugin-remote-assets",
  "type": "module",
  "version": "2.1.0",
  "description": "Bundles your assets from remote urls with your app",
  "author": "Anthony Fu <anthonyfu117@hotmail.com>",
  "license": "MIT",
  "funding": "https://github.com/sponsors/antfu",
  "homepage": "https://github.com/antfu/vite-plugin-remote-assets#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/antfu/vite-plugin-remote-assets.git"
  },
  "bugs": {
    "url": "https://github.com/antfu/vite-plugin-remote-assets/issues"
  },
  "keywords": [
    "vite-plugin"
  ],
  "sideEffects": false,
  "exports": {
    ".": "./dist/index.mjs"
  },
  "main": "dist/index.mjs",
  "module": "dist/index.mjs",
  "types": "dist/index.d.mts",
  "files": [
    "dist"
  ],
  "peerDependencies": {
    "vite": ">=5.0.0"
  },
  "dependencies": {
    "debug": "^4.4.1",
    "magic-string": "^0.30.17",
    "node-fetch-native": "^1.6.7",
    "ohash": "^2.0.11"
  },
  "devDependencies": {
    "@antfu/eslint-config": "^5.2.1",
    "@antfu/ni": "^25.0.0",
    "@antfu/utils": "^9.2.0",
    "@types/debug": "^4.1.12",
    "@types/follow-redirects": "^1.14.4",
    "@types/node": "^24.3.0",
    "bumpp": "^10.2.3",
    "eslint": "^9.33.0",
    "tsx": "^4.20.4",
    "typescript": "^5.9.2",
    "unbuild": "^3.6.1",
    "vite": "^7.1.2",
    "vitest": "^3.2.4"
  },
  "scripts": {
    "dev": "unbuild --stub",
    "start": "tsx src/index.ts",
    "build": "unbuild",
    "release": "bumpp && pnpm publish",
    "lint": "eslint .",
    "typecheck": "tsc --noEmit",
    "play": "nr -C example dev",
    "test": "vitest"
  }
}