Home / File/ package.json — vite Source File

package.json — vite Source File

Architecture documentation for package.json, a json file in the vite codebase.

Entity Profile

Source Code

{
  "name": "@vitejs/test-worker",
  "private": true,
  "version": "0.0.0",
  "type": "module",
  "scripts": {
    "dev": "vite --config ./vite.config-iife.js",
    "build": "vite --config ./vite.config-iife.js build",
    "preview": "vite --config ./vite.config-iife.js preview",
    "dev:es": "vite --config ./vite.config-es.js dev",
    "build:es": "vite --config ./vite.config-es.js build",
    "preview:es": "vite --config ./vite.config-es.js preview",
    "dev:sourcemap": "WORKER_MODE=sourcemap vite --config ./vite.config-sourcemap.js dev",
    "build:sourcemap": "WORKER_MODE=sourcemap vite --config ./vite.config-sourcemap.js build",
    "preview:sourcemap": "WORKER_MODE=sourcemap vite --config ./vite.config-sourcemap.js preview",
    "dev:sourcemap-hidden": "WORKER_MODE=hidden vite --config ./vite.config-sourcemap.js dev",
    "build:sourcemap-hidden": "WORKER_MODE=hidden vite --config ./vite.config-sourcemap.js build",
    "preview:sourcemap-hidden": "WORKER_MODE=hidden vite --config ./vite.config-sourcemap.js preview",
    "dev:sourcemap-inline": "WORKER_MODE=inline vite --config ./vite.config-sourcemap.js dev",
    "build:sourcemap-inline": "WORKER_MODE=inline vite --config ./vite.config-sourcemap.js build",
    "preview:sourcemap-inline": "WORKER_MODE=inline vite --config ./vite.config-sourcemap.js preview",
    "dev:relative-base": "WORKER_MODE=inline vite --config ./vite.config-relative-base.js dev",
    "build:relative-base": "WORKER_MODE=inline vite --config ./vite.config-relative-base.js build",
    "preview:relative-base": "WORKER_MODE=inline vite --config ./vite.config-relative-base.js preview",
    "dev:relative-base-iife": "WORKER_MODE=inline vite --config ./vite.config-relative-base-iife.js dev",
    "build:relative-base-iife": "WORKER_MODE=inline vite --config ./vite.config-relative-base-iife.js build",
    "preview:relative-base-iife": "WORKER_MODE=inline vite --config ./vite.config-relative-base-iife.js preview",
    "debug": "node --inspect-brk ../../packages/vite/bin/vite"
  },
  "dependencies": {
    "@vitejs/test-dep-self-reference-url-worker": "file:./dep-self-reference-url-worker",
    "@vitejs/test-dep-to-optimize": "file:./dep-to-optimize",
    "@vitejs/test-worker-dep-cjs": "file:./dep-cjs"
  }
}

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/worker/package.json (directory: playground/worker).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free