Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 | { "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" ], "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.20.5", "@microsoft/api-extractor": "^7.33.7", "@rollup/plugin-typescript": "^10.0.1", "@types/babel__core": "^7.1.20", "@types/babel__standalone": "^7.1.4", "@types/convert-source-map": "^2.0.0", "@types/cross-spawn": "^6.0.2", "@types/debug": "^4.1.7", "@types/estree": "^1.0.0", "@types/etag": "^1.8.1", "@types/fs-extra": "^9.0.13", "@types/less": "^3.0.3", "@types/micromatch": "^4.0.2", "@types/minimist": "^1.2.2", "@types/node": "^18.11.13", "@types/picomatch": "^2.3.0", "@types/prompts": "^2.4.2", "@types/resolve": "^1.20.2", "@types/sass": "~1.43.1", "@types/semver": "^7.3.13", "@types/stylus": "^0.48.38", "@types/ws": "^8.5.3", "@typescript-eslint/eslint-plugin": "^5.46.0", "@typescript-eslint/parser": "^5.46.0", "conventional-changelog-cli": "^2.2.2", "esbuild": "^0.16.3", "eslint": "^8.29.0", "eslint-define-config": "^1.12.0", "eslint-plugin-import": "^2.26.0", "eslint-plugin-node": "^11.1.0", "eslint-plugin-regexp": "^1.11.0", "execa": "^6.1.0", "fast-glob": "^3.2.12", "fs-extra": "^11.1.0", "lint-staged": "^13.1.0", "minimist": "^1.2.7", "npm-run-all": "^4.1.5", "picocolors": "^1.0.0", "playwright-chromium": "^1.28.1", "pnpm": "^7.18.1", "prettier": "2.8.1", "prompts": "^2.4.2", "resolve": "^1.22.1", "rimraf": "^3.0.2", "rollup": "^3.7.0", "semver": "^7.3.8", "simple-git-hooks": "^2.8.1", "tslib": "^2.4.1", "tsx": "^3.12.1", "typescript": "^4.9.3", "unbuild": "^0.9.4", "vite": "workspace:*", "vitepress": "^1.0.0-alpha.31", "vitest": "^0.25.7", "vue": "^3.2.45" }, "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@7.18.1", "pnpm": { "overrides": { "vite": "workspace:*" }, "packageExtensions": { "postcss-load-config": { "peerDependencies": { "postcss": "*" } }, "acorn-walk": { "peerDependencies": { "acorn": "*" } } }, "patchedDependencies": { "dotenv-expand@9.0.0": "patches/dotenv-expand@9.0.0.patch", "sirv@2.0.2": "patches/sirv@2.0.2.patch" } } } |