vite/package.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

138 lines
4.1 KiB
JSON
Raw Normal View History

2020-04-20 08:00:10 +00:00
{
2020-12-06 23:21:10 +00:00
"name": "@vitejs/vite-monorepo",
"private": true,
"engines": {
"node": "^14.18.0 || >=16.0.0"
},
"homepage": "https://vitejs.dev/",
"keywords": [
"frontend",
"hmr",
"dev-server",
"build-tool",
"vite"
],
2020-12-08 10:55:12 +00:00
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "simple-git-hooks",
"format": "prettier --write --cache .",
2022-08-01 05:39:26 +00:00
"lint": "eslint --cache .",
2022-12-15 07:08:09 +00:00
"typecheck": "tsc -p scripts --noEmit && pnpm -r --parallel run typecheck",
2022-05-07 03:07:05 +00:00
"test": "run-s test-unit test-serve test-build",
2022-05-11 06:33:20 +00:00
"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",
2022-05-25 14:48:33 +00: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",
2020-12-30 20:53:52 +00:00
"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"
2020-12-08 10:55:12 +00:00
},
2020-04-20 23:13:22 +00:00
"devDependencies": {
"@babel/types": "^7.21.3",
"@microsoft/api-extractor": "^7.34.4",
"@rollup/plugin-typescript": "^11.0.0",
"@types/babel__core": "^7.20.0",
"@types/babel__standalone": "^7.1.4",
"@types/convert-source-map": "^2.0.0",
2022-05-11 14:23:39 +00:00
"@types/cross-spawn": "^6.0.2",
"@types/debug": "^4.1.7",
"@types/estree": "^1.0.0",
2022-05-11 14:23:39 +00:00
"@types/etag": "^1.8.1",
"@types/fs-extra": "^11.0.1",
2023-01-04 16:05:16 +00:00
"@types/json-stable-stringify": "^1.0.34",
2022-05-11 14:23:39 +00:00
"@types/less": "^3.0.3",
"@types/micromatch": "^4.0.2",
"@types/minimist": "^1.2.2",
"@types/node": "^18.15.5",
"@types/picomatch": "^2.3.0",
"@types/prompts": "2.4.2",
2022-05-11 14:23:39 +00:00
"@types/resolve": "^1.20.2",
"@types/sass": "~1.43.1",
"@types/semver": "^7.3.13",
"@types/stylus": "^0.48.38",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.36.0",
"eslint-define-config": "^1.17.0",
"eslint-plugin-import": "^2.27.5",
2020-12-08 10:55:12 +00:00
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-regexp": "^1.13.0",
"execa": "^7.1.1",
"fast-glob": "^3.2.12",
"fs-extra": "^11.1.1",
"lint-staged": "^13.2.0",
"minimist": "^1.2.8",
2020-04-20 23:13:22 +00:00
"npm-run-all": "^4.1.5",
"picocolors": "^1.0.0",
"playwright-chromium": "^1.31.2",
"prettier": "2.8.5",
"prompts": "^2.4.2",
2022-08-29 18:21:35 +00:00
"resolve": "^1.22.1",
"rimraf": "^4.4.0",
"rollup": "^3.20.2",
"semver": "^7.3.8",
"simple-git-hooks": "^2.8.1",
"tslib": "^2.5.0",
"tsx": "^3.12.6",
"typescript": "^5.0.2",
"unbuild": "^1.1.2",
"vite": "workspace:*",
"vitepress": "^1.0.0-alpha.61",
"vitest": "^0.29.7",
"vue": "^3.2.47"
2020-12-08 07:00:53 +00:00
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged --concurrent false"
2020-12-08 07:00:53 +00:00
},
"lint-staged": {
"*": [
"prettier --write --cache --ignore-unknown"
2020-12-08 07:00:53 +00:00
],
"packages/*/{src,types}/**/*.ts": [
"eslint --cache --fix"
],
"packages/**/*.d.ts": [
"eslint --cache --fix"
2022-05-11 08:44:14 +00:00
],
"playground/**/__tests__/**/*.ts": [
"eslint --cache --fix"
2020-12-08 07:00:53 +00:00
]
2021-09-24 20:21:04 +00:00
},
"packageManager": "pnpm@7.30.0",
2021-09-24 20:21:04 +00:00
"pnpm": {
"overrides": {
"vite": "workspace:*"
},
"packageExtensions": {
"postcss-load-config": {
"peerDependencies": {
"postcss": "*"
}
},
"acorn-walk": {
"peerDependencies": {
"acorn": "*"
}
}
},
"patchedDependencies": {
2022-12-12 15:15:53 +00:00
"dotenv-expand@9.0.0": "patches/dotenv-expand@9.0.0.patch",
"sirv@2.0.2": "patches/sirv@2.0.2.patch",
"chokidar@3.5.3": "patches/chokidar@3.5.3.patch"
2021-09-24 20:21:04 +00:00
}
},
"stackblitz": {
"startCommand": "pnpm --filter='./packages/vite' run dev"
2020-04-20 08:00:10 +00:00
}
}