{
  "name": "impound",
  "type": "module",
  "version": "0.1.0",
  "description": "Builder-agnostic plugin to allow restricting import patterns in certain parts of your code-base.",
  "license": "MIT",
  "repository": "unjs/impound",
  "sideEffects": false,
  "exports": {
    ".": "./dist/index.js"
  },
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist"
  ],
  "dependencies": {
    "@rollup/pluginutils": "^5.1.0",
    "mlly": "^1.7.1",
    "pathe": "^1.1.2",
    "unenv": "^1.10.0",
    "unplugin": "^1.12.2"
  },
  "devDependencies": {
    "@antfu/eslint-config": "latest",
    "@vitest/coverage-v8": "latest",
    "bumpp": "latest",
    "eslint": "latest",
    "lint-staged": "latest",
    "rollup": "^4.21.1",
    "simple-git-hooks": "latest",
    "typescript": "latest",
    "unbuild": "latest",
    "vite": "latest",
    "vitest": "latest"
  },
  "resolutions": {
    "impound": "link:."
  },
  "simple-git-hooks": {
    "pre-commit": "npx lint-staged"
  },
  "lint-staged": {
    "*.{js,ts,mjs,cjs,json,.*rc}": [
      "pnpm eslint --fix"
    ]
  },
  "scripts": {
    "build": "unbuild",
    "dev": "vitest dev",
    "lint": "eslint . --fix",
    "release": "bumpp && pnpm publish",
    "test": "pnpm test:unit && pnpm test:types",
    "test:unit": "vitest",
    "test:types": "tsc --noEmit"
  }
}