{ "name": "@vitest/monorepo", "type": "module", "version": "0.32.0", "private": true, "packageManager": "pnpm@8.6.0", "description": "A blazing fast unit test framework powered by Vite", "scripts": { "ci": "ni && nr typecheck && nr lint && nr build && nr test:all", "build": "pnpm -r --filter='./packages/**' run build", "dev": "NODE_OPTIONS=\"--max-old-space-size=8192\" pnpm -r --parallel --filter='./packages/**' run dev", "docs": "pnpm -C docs run dev", "docs:build": "pnpm -C docs run build", "docs:serve": "pnpm -C docs run serve", "docs:https": "pnpm -C docs run preview-https", "docs:https-no-prefetch": "pnpm -C docs run preview-https-no-prefetch", "docs:examples": "esno scripts/update-examples.ts", "docs:contributors": "esno scripts/update-contributors.ts", "lint": "eslint --cache .", "lint:fix": "nr lint --fix", "release": "bumpp package.json packages/*/package.json --commit --push --tag && pnpm -r publish --access public", "test": "vitest --api -r test/core", "test:run": "vitest run -r test/core", "test:all": "CI=true pnpm -r --stream run test --allowOnly", "test:ci": "CI=true pnpm -r --stream --filter !test-fails --filter !test-browser --filter !test-esm --filter !test-browser run test --allowOnly", "test:ci:single-thread": "CI=true pnpm -r --stream --filter !test-fails --filter !test-coverage --filter !test-watch --filter !test-bail --filter !test-esm --filter !test-browser run test --allowOnly --no-threads", "typecheck": "tsc --noEmit", "typecheck:why": "tsc --noEmit --explainFiles > explainTypes.txt", "ui:build": "vite build packages/ui", "ui:dev": "vite packages/ui", "ui:test": "npm -C packages/ui run test:run", "test:browser:webdriverio": "pnpm -C test/browser run test:webdriverio", "test:browser:playwright": "pnpm -C test/browser run test:playwright" }, "devDependencies": { "@antfu/eslint-config": "^0.38.5", "@antfu/ni": "^0.21.3", "@rollup/plugin-alias": "^4.0.2", "@rollup/plugin-commonjs": "^23.0.2", "@rollup/plugin-json": "^5.0.1", "@rollup/plugin-node-resolve": "^15.0.1", "@types/fs-extra": "^11.0.1", "@types/lodash": "^4.14.194", "@types/node": "^18.16.3", "@types/ws": "^8.5.4", "@vitest/browser": "workspace:*", "@vitest/coverage-c8": "workspace:*", "@vitest/coverage-istanbul": "workspace:*", "@vitest/coverage-v8": "workspace:*", "@vitest/ui": "workspace:*", "bumpp": "^9.1.0", "esbuild": "^0.17.18", "eslint": "^8.39.0", "esno": "^0.16.3", "fast-glob": "^3.2.12", "if-node-version": "^1.1.1", "lint-staged": "^13.2.2", "magic-string": "^0.30.0", "node-fetch-native": "^1.1.0", "npm-run-all": "^4.1.5", "ohmyfetch": "^0.4.21", "pathe": "^1.1.0", "pnpm": "8.6.0", "rimraf": "^5.0.0", "rollup": "^3.20.2", "rollup-plugin-dts": "^5.3.0", "rollup-plugin-esbuild": "^5.0.0", "rollup-plugin-license": "^3.0.1", "simple-git-hooks": "^2.8.1", "ts-node": "^10.9.1", "tsup": "^6.7.0", "typescript": "^5.0.4", "vite": "^4.2.1", "vitest": "workspace:*" }, "pnpm": { "overrides": { "vite": "^4.3.9", "vitest": "workspace:*" } }, "simple-git-hooks": { "pre-commit": "npx lint-staged" }, "lint-staged": { "*.{[jt]s?(x),vue,md}": [ "eslint --cache --fix" ] } }