SIGN IN SIGN UP
vitejs / vite UNCLAIMED

Next generation frontend tooling. It's fast!

79383 0 0 TypeScript
2020-04-20 04:00:10 -04:00
{
2020-12-06 18:21:10 -05:00
"name": "@vitejs/vite-monorepo",
"private": true,
"type": "module",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
2024-10-04 15:42:06 +08:00
"homepage": "https://vite.dev/",
2023-05-18 11:34:53 +02:00
"repository": {
"type": "git",
"url": "git+https://github.com/vitejs/vite.git"
},
"keywords": [
"frontend",
"hmr",
"dev-server",
"build-tool",
"vite"
],
2020-12-08 05:55:12 -05:00
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "simple-git-hooks",
"format": "prettier --write --cache . --experimental-cli",
"lint": "eslint --cache . --concurrency auto",
2025-05-30 11:47:07 +02:00
"typecheck": "tsc -p scripts && pnpm -r --parallel run typecheck",
2024-09-12 17:33:28 +08:00
"test": "pnpm test-unit && pnpm test-serve && pnpm test-build",
2022-05-11 14:33:20 +08:00
"test-serve": "vitest run -c vitest.config.e2e.ts",
"test-build": "VITE_TEST_BUILD=1 vitest run -c vitest.config.e2e.ts",
"test-unit": "vitest run",
2022-05-25 22:48:33 +08:00
"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": "pnpm --filter=./docs run docs",
"docs-build": "pnpm --filter=./docs run docs-build",
"docs-serve": "pnpm --filter=./docs run docs-serve",
"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": "pnpm build && pnpm docs-build",
"merge-changelog": "tsx scripts/mergeChangelog.ts"
2020-12-08 05:55:12 -05:00
},
2020-04-20 19:13:22 -04:00
"devDependencies": {
"@eslint/js": "^9.39.4",
"@type-challenges/utils": "^0.1.1",
"@types/babel__core": "^7.20.5",
"@types/babel__preset-env": "^7.10.0",
"@types/convert-source-map": "^2.0.3",
"@types/cross-spawn": "^6.0.6",
"@types/etag": "^1.8.4",
"@types/less": "^3.0.8",
"@types/node": "^24.12.0",
"@types/picomatch": "^4.0.2",
"@types/stylus": "^0.48.43",
"@types/ws": "^8.18.1",
"@vitejs/release-scripts": "^1.6.0",
"eslint": "^9.39.4",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-regexp": "^3.1.0",
"execa": "^9.6.1",
"globals": "^17.4.0",
"lint-staged": "^16.4.0",
"picocolors": "^1.1.1",
"playwright-chromium": "^1.58.2",
"prettier": "3.8.1",
"rolldown": "1.0.0-rc.12",
"rollup": "^4.59.0",
"simple-git-hooks": "^2.13.1",
"tsx": "^4.21.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.57.1",
"vite": "workspace:*",
"vitest": "^4.1.0"
2020-12-08 02:00:53 -05:00
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged --concurrent false"
2020-12-08 02:00:53 -05:00
},
"lint-staged": {
"*": [
"prettier --write --cache --ignore-unknown --experimental-cli"
2020-12-08 02:00:53 -05:00
],
"packages/*/{src,types}/**/*.ts": [
"eslint --cache --fix --concurrency auto"
],
"packages/**/*.d.ts": [
"eslint --cache --fix --concurrency auto"
2022-05-11 16:44:14 +08:00
],
"playground/**/__tests__/**/*.ts": [
"eslint --cache --fix --concurrency auto"
2020-12-08 02:00:53 -05:00
]
2021-09-24 16:21:04 -04:00
},
"packageManager": "pnpm@10.32.1",
"stackblitz": {
"startCommand": "pnpm --filter='./packages/vite' run dev"
2020-04-20 04:00:10 -04:00
}
}