package.json — vite Source File
Architecture documentation for package.json, a json file in the vite codebase.
Entity Profile
Source Code
{
"name": "@vitejs/test-ssr-conditions",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "node server",
"build": "npm run build:client && npm run build:server",
"build:client": "vite build --outDir dist/client",
"build:server": "vite build --ssr src/app.js --outDir dist/server",
"serve": "NODE_ENV=production node server",
"debug": "node --inspect-brk server"
},
"dependencies": {
"@vitejs/test-ssr-conditions-external": "file:./external",
"@vitejs/test-ssr-conditions-no-external": "file:./no-external"
},
"devDependencies": {
"express": "^5.2.1",
"sirv": "^3.0.2"
}
}
Source
Frequently Asked Questions
What does package.json do?
package.json is a source file in the vite codebase, written in json.
Where is package.json in the architecture?
package.json is located at playground/ssr-conditions/package.json (directory: playground/ssr-conditions).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free