Linux Audio

Check our new training course

Embedded Linux Audio

Check our new training course
with Creative Commons CC-BY-SA
lecture materials

Bootlin logo

Elixir Cross Referencer

Loading...
{
  "name": "@vitejs/vite-monorepo",
  "private": true,
  "type": "module",
  "engines": {
    "node": "^18.0.0 || >=20.0.0"
  },
  "homepage": "https://vitejs.dev/",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vitejs/vite.git"
  },
  "keywords": [
    "frontend",
    "hmr",
    "dev-server",
    "build-tool",
    "vite"
  ],
  "scripts": {
    "preinstall": "npx only-allow pnpm",
    "postinstall": "simple-git-hooks",
    "format": "prettier --write --cache .",
    "lint": "eslint --cache .",
    "typecheck": "tsc -p scripts --noEmit && pnpm -r --parallel run typecheck",
    "test": "run-s test-unit test-serve test-build",
    "test-serve": "vitest run -c vitest.config.e2e.ts",
    "test-build": "VITE_TEST_BUILD=1 vitest run -c vitest.config.e2e.ts",
    "test-build-without-plugin-commonjs": "VITE_TEST_WITHOUT_PLUGIN_COMMONJS=1 pnpm test-build",
    "test-unit": "vitest run",
    "test-docs": "pnpm run docs-build",
    "debug-serve": "VITE_DEBUG_SERVE=1 vitest run -c vitest.config.e2e.ts",
    "debug-build": "VITE_TEST_BUILD=1 VITE_PRESERVE_BUILD_ARTIFACTS=1 vitest run -c vitest.config.e2e.ts",
    "docs": "vitepress dev docs",
    "docs-build": "vitepress build docs",
    "docs-serve": "vitepress serve docs",
    "build": "pnpm -r --filter='./packages/*' run build",
    "dev": "pnpm -r --parallel --filter='./packages/*' run dev",
    "release": "tsx scripts/release.ts",
    "ci-publish": "tsx scripts/publishCI.ts",
    "ci-docs": "run-s build docs-build"
  },
  "devDependencies": {
    "@babel/types": "^7.22.19",
    "@microsoft/api-extractor": "^7.37.0",
    "@rollup/plugin-typescript": "^11.1.3",
    "@types/babel__core": "^7.20.2",
    "@types/babel__preset-env": "^7.9.3",
    "@types/convert-source-map": "^2.0.1",
    "@types/cross-spawn": "^6.0.3",
    "@types/debug": "^4.1.9",
    "@types/estree": "^1.0.2",
    "@types/etag": "^1.8.1",
    "@types/fs-extra": "^11.0.2",
    "@types/json-stable-stringify": "^1.0.34",
    "@types/less": "^3.0.4",
    "@types/micromatch": "^4.0.2",
    "@types/node": "^18.17.19",
    "@types/picomatch": "^2.3.1",
    "@types/sass": "~1.43.1",
    "@types/stylus": "^0.48.39",
    "@types/ws": "^8.5.5",
    "@typescript-eslint/eslint-plugin": "^6.7.2",
    "@typescript-eslint/parser": "^6.7.2",
    "@vitejs/release-scripts": "^1.3.1",
    "conventional-changelog-cli": "^3.0.0",
    "eslint": "^8.50.0",
    "eslint-define-config": "^1.23.0",
    "eslint-plugin-import": "^2.28.1",
    "eslint-plugin-n": "^16.1.0",
    "eslint-plugin-regexp": "^1.15.0",
    "execa": "^8.0.1",
    "fs-extra": "^11.1.1",
    "lint-staged": "^14.0.1",
    "npm-run-all": "^4.1.5",
    "picocolors": "^1.0.0",
    "playwright-chromium": "^1.38.1",
    "prettier": "3.0.3",
    "rimraf": "^5.0.1",
    "rollup": "^3.29.2",
    "simple-git-hooks": "^2.9.0",
    "tslib": "^2.6.2",
    "tsx": "^3.13.0",
    "typescript": "^5.2.2",
    "unbuild": "^2.0.0",
    "vite": "workspace:*",
    "vitepress": "1.0.0-rc.20",
    "vitest": "^0.34.5",
    "vue": "^3.3.4"
  },
  "simple-git-hooks": {
    "pre-commit": "pnpm exec lint-staged --concurrent false"
  },
  "lint-staged": {
    "*": [
      "prettier --write --cache --ignore-unknown"
    ],
    "packages/*/{src,types}/**/*.ts": [
      "eslint --cache --fix"
    ],
    "packages/**/*.d.ts": [
      "eslint --cache --fix"
    ],
    "playground/**/__tests__/**/*.ts": [
      "eslint --cache --fix"
    ]
  },
  "packageManager": "pnpm@8.7.6",
  "pnpm": {
    "overrides": {
      "vite": "workspace:*"
    },
    "packageExtensions": {
      "acorn-walk": {
        "peerDependencies": {
          "acorn": "*"
        }
      }
    },
    "patchedDependencies": {
      "chokidar@3.5.3": "patches/chokidar@3.5.3.patch",
      "sirv@2.0.3": "patches/sirv@2.0.3.patch",
      "dotenv-expand@10.0.0": "patches/dotenv-expand@10.0.0.patch"
    },
    "peerDependencyRules": {
      "allowedVersions": {
        "vite": "*"
      },
      "ignoreMissing": [
        "@algolia/client-search",
        "postcss",
        "search-insights"
      ]
    }
  },
  "stackblitz": {
    "startCommand": "pnpm --filter='./packages/vite' run dev"
  }
}