{
  "name": "vite-plugin-tsconfig",
  "version": "2.0.0",
  "packageManager": "yarn@4.9.4",
  "description": "Vite plugin that allows you to use alternate tsconfig files.",
  "type": "module",
  "main-note": "Though this is ESM only, the following main is to appease tsc and varieties of moduleResolution e.g. node vs nodenext, otherwise types aren't found. see https://github.com/rosskevin/ts-esm-workspaces/tree/bug-main-required-to-build#workaround ",
  "main": "./dist/index.js",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "sideEffects": false,
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "yarn clean && tsup-node",
    "typecheck": "echo 'tsc -b' && tsc -b",
    "clean": "node ./scripts/clean.js",
    "clean:yarn": "node ./scripts/clean-yarn.js",
    "lint": "eslint . --cache --ext .js,.ts,.tsx",
    "lint:fix": "eslint . --cache --ext .js,.ts,.tsx --fix",
    "test": "echo 'no tests' && exit 0",
    "release": "yarn auto shipit"
  },
  "keywords": [
    "vite-plugin",
    "tsconfig"
  ],
  "licenses": [
    {
      "type": "MIT",
      "url": "http://www.opensource.org/licenses/mit-license.php"
    }
  ],
  "repository": "https://github.com/alienfast/vite-plugin-tsconfig",
  "homepage": "https://github.com/alienfast/vite-plugin-tsconfig",
  "maintainers": [
    {
      "name": "Kevin Ross",
      "email": "kevin.ross@alienfast.com"
    }
  ],
  "peerDependencies": {
    "vite": ">=3.1.6"
  },
  "devDependencies": {
    "@alienfast/eslint-config": "^6.0.7",
    "@alienfast/tsconfig": "^1.0.4",
    "@auto-it/all-contributors": "^11.3.0",
    "@auto-it/first-time-contributor": "^11.3.0",
    "@auto-it/released": "^11.3.0",
    "@types/marked": "^6",
    "@types/marked-terminal": "^6.1.1",
    "auto": "^11.3.0",
    "eslint": "^9.35.0",
    "execa": "^9.6.0",
    "husky": "^9.1.7",
    "lint-staged": "^16.1.6",
    "npm-run-all": "^4.1.5",
    "prettier": "^3.6.2",
    "rimraf": "^6.0.1",
    "tsup": "^8.5.0",
    "typescript": "^5.9.2",
    "vite": "^7.1.5",
    "vite-plugin-dts": "^4.5.4",
    "vitest": "^3.2.4"
  },
  "auto": {
    "canary": {
      "target": "comment"
    },
    "plugins": [
      "npm",
      "all-contributors",
      "first-time-contributor",
      "released"
    ]
  },
  "dependencies": {
    "@alienfast/find-monorepo-root": "^1.0.9",
    "marked": "^16.3.0",
    "marked-terminal": "^7.3.0"
  }
}
