vite/playground/legacy/package.json
2024-11-05 19:27:51 +08:00

24 lines
868 B
JSON

{
"name": "@vitejs/test-legacy",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build --debug legacy",
"build:custom-filename": "vite --config ./vite.config-custom-filename.js build --debug legacy",
"build:multiple-output": "vite --config ./vite.config-multiple-output.js build",
"build:no-polyfills": "vite --config ./vite.config-no-polyfills.js build",
"build:no-polyfills-no-systemjs": "vite --config ./vite.config-no-polyfills-no-systemjs.js build",
"build:watch": "vite --config ./vite.config-watch.js build --debug legacy",
"debug": "node --inspect-brk ../../packages/vite/bin/vite",
"preview": "vite preview"
},
"devDependencies": {
"vite": "workspace:*",
"@vitejs/plugin-legacy": "workspace:*",
"express": "^5.0.1",
"terser": "^5.36.0"
}
}