CoolFace
Apppublic

Pinsave/counterstrike

sourceHugging Faceupdated 3mo agoView on Hugging Face
1likes
package.json200 linesDownload Raw Back to vite
1{2  "name": "vite",3  "version": "7.0.6",4  "type": "module",5  "license": "MIT",6  "author": "Evan You",7  "description": "Native-ESM powered web dev build tool",8  "bin": {9    "vite": "bin/vite.js"10  },11  "keywords": [12    "frontend",13    "framework",14    "hmr",15    "dev-server",16    "build-tool",17    "vite"18  ],19  "main": "./dist/node/index.js",20  "types": "./dist/node/index.d.ts",21  "exports": {22    ".": "./dist/node/index.js",23    "./client": {24      "types": "./client.d.ts"25    },26    "./module-runner": "./dist/node/module-runner.js",27    "./dist/client/*": "./dist/client/*",28    "./types/*": {29      "types": "./types/*"30    },31    "./types/internal/*": null,32    "./package.json": "./package.json"33  },34  "typesVersions": {35    "*": {36      "module-runner": [37        "dist/node/module-runner.d.ts"38      ]39    }40  },41  "imports": {42    "#module-sync-enabled": {43      "module-sync": "./misc/true.js",44      "default": "./misc/false.js"45    }46  },47  "files": [48    "bin",49    "dist",50    "misc/**/*.js",51    "client.d.ts",52    "index.cjs",53    "index.d.cts",54    "types"55  ],56  "engines": {57    "node": "^20.19.0 || >=22.12.0"58  },59  "repository": {60    "type": "git",61    "url": "git+https://github.com/vitejs/vite.git",62    "directory": "packages/vite"63  },64  "bugs": {65    "url": "https://github.com/vitejs/vite/issues"66  },67  "homepage": "https://vite.dev",68  "funding": "https://github.com/vitejs/vite?sponsor=1",69  "//": "READ CONTRIBUTING.md to understand what to put under deps vs. devDeps!",70  "dependencies": {71    "esbuild": "^0.25.0",72    "fdir": "^6.4.6",73    "picomatch": "^4.0.3",74    "postcss": "^8.5.6",75    "rollup": "^4.40.0",76    "tinyglobby": "^0.2.14"77  },78  "optionalDependencies": {79    "fsevents": "~2.3.3"80  },81  "devDependencies": {82    "@ampproject/remapping": "^2.3.0",83    "@babel/parser": "^7.28.0",84    "@jridgewell/trace-mapping": "^0.3.29",85    "@oxc-project/types": "0.77.0",86    "@polka/compression": "^1.0.0-next.25",87    "@rollup/plugin-alias": "^5.1.1",88    "@rollup/plugin-commonjs": "^28.0.6",89    "@rollup/plugin-dynamic-import-vars": "2.1.4",90    "@rollup/pluginutils": "^5.2.0",91    "@types/escape-html": "^1.0.4",92    "@types/pnpapi": "^0.0.5",93    "artichokie": "^0.3.2",94    "baseline-browser-mapping": "^2.5.5",95    "cac": "^6.7.14",96    "chokidar": "^3.6.0",97    "connect": "^3.7.0",98    "convert-source-map": "^2.0.0",99    "cors": "^2.8.5",100    "cross-spawn": "^7.0.6",101    "debug": "^4.4.1",102    "dep-types": "link:./src/types",103    "dotenv": "^17.2.0",104    "dotenv-expand": "^12.0.2",105    "es-module-lexer": "^1.7.0",106    "escape-html": "^1.0.3",107    "estree-walker": "^3.0.3",108    "etag": "^1.8.1",109    "host-validation-middleware": "^0.1.1",110    "http-proxy": "^1.18.1",111    "launch-editor-middleware": "^2.10.0",112    "lightningcss": "^1.30.1",113    "magic-string": "^0.30.17",114    "mlly": "^1.7.4",115    "mrmime": "^2.0.1",116    "nanoid": "^5.1.5",117    "open": "^10.2.0",118    "parse5": "^7.3.0",119    "pathe": "^2.0.3",120    "periscopic": "^4.0.2",121    "picocolors": "^1.1.1",122    "postcss-import": "^16.1.1",123    "postcss-load-config": "^6.0.1",124    "postcss-modules": "^6.0.1",125    "premove": "^4.0.0",126    "resolve.exports": "^2.0.3",127    "rolldown": "^1.0.0-beta.29",128    "rolldown-plugin-dts": "^0.14.1",129    "rollup-plugin-license": "^3.6.0",130    "sass": "^1.89.2",131    "sass-embedded": "^1.89.2",132    "sirv": "^3.0.1",133    "strip-literal": "^3.0.0",134    "terser": "^5.43.1",135    "tsconfck": "^3.1.6",136    "types": "link:./types",137    "ufo": "^1.6.1",138    "ws": "^8.18.3"139  },140  "peerDependencies": {141    "@types/node": "^20.19.0 || >=22.12.0",142    "jiti": ">=1.21.0",143    "less": "^4.0.0",144    "lightningcss": "^1.21.0",145    "sass": "^1.70.0",146    "sass-embedded": "^1.70.0",147    "stylus": ">=0.54.8",148    "sugarss": "^5.0.0",149    "terser": "^5.16.0",150    "tsx": "^4.8.1",151    "yaml": "^2.4.2"152  },153  "peerDependenciesMeta": {154    "@types/node": {155      "optional": true156    },157    "jiti": {158      "optional": true159    },160    "sass": {161      "optional": true162    },163    "sass-embedded": {164      "optional": true165    },166    "stylus": {167      "optional": true168    },169    "less": {170      "optional": true171    },172    "sugarss": {173      "optional": true174    },175    "lightningcss": {176      "optional": true177    },178    "terser": {179      "optional": true180    },181    "tsx": {182      "optional": true183    },184    "yaml": {185      "optional": true186    }187  },188  "scripts": {189    "dev": "premove dist && pnpm build-bundle -w",190    "build": "premove dist && pnpm build-bundle && pnpm build-types",191    "build-bundle": "rolldown --config rolldown.config.ts",192    "build-types": "pnpm build-types-roll && pnpm build-types-check",193    "build-types-roll": "rolldown --config rolldown.dts.config.ts",194    "build-types-check": "tsc --project tsconfig.check.json",195    "typecheck": "tsc && tsc -p src/node",196    "lint": "eslint --cache --ext .ts src/**",197    "format": "prettier --write --cache --parser typescript \"src/**/*.ts\"",198    "generate-target": "tsx scripts/generateTarget.ts"199  }200}