{
  "name": "nuxt-resource-hints",
  "version": "0.0.5",
  "description": "Nuxt module that adds HTTP header resource hints for resources in your Nuxt App.",
  "repository": "IO-Fire/nuxt-resource-hints",
  "keywords": [
    "nuxt",
    "vue",
    "http",
    "resource-hints",
    "lcp",
    "performance"
  ],
  "license": "MIT",
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/types.d.mts",
      "import": "./dist/module.mjs"
    }
  },
  "main": "./dist/module.mjs",
  "typesVersions": {
    "*": {
      ".": [
        "./dist/types.d.mts"
      ]
    }
  },
  "files": [
    "dist"
  ],
  "dependencies": {
    "defu": "^6.1.4",
    "@nuxt/kit": "^4.2.1"
  },
  "devDependencies": {
    "@nuxt/devtools": "3.1.0",
    "@nuxt/eslint-config": "1.10.0",
    "@nuxt/image": "2.0.0",
    "@nuxt/module-builder": "1.0.2",
    "@nuxt/schema": "4.2.1",
    "@nuxt/test-utils": "3.20.1",
    "@types/node": "latest",
    "changelogen": "0.6.2",
    "eslint": "9.39.1",
    "nuxt": "4.2.1",
    "typescript": "5.9.3",
    "vitest": "4.0.13",
    "vue-tsc": "3.1.5"
  },
  "unbuild": {
    "externals": [
      "unstorage"
    ]
  },
  "publishConfig": {
    "provenance": true
  },
  "scripts": {
    "dev": "nuxi dev playground",
    "dev:build": "nuxi build playground",
    "dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
    "release": "npm run lint && npm run test && npm run prepack && changelogen --release && git push --follow-tags",
    "lint": "eslint .",
    "test": "vitest run",
    "test:watch": "vitest watch",
    "test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
  }
}