Home / File/ package.json — ui Source File

package.json — ui Source File

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

Entity Profile

Source Code

{
  "name": "shadcn-ui",
  "version": "0.9.5",
  "description": "Add components to your apps.",
  "publishConfig": {
    "access": "public"
  },
  "license": "MIT",
  "author": {
    "name": "shadcn",
    "url": "https://twitter.com/shadcn"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/shadcn/ui.git",
    "directory": "packages/cli"
  },
  "files": [
    "dist"
  ],
  "keywords": [
    "components",
    "ui",
    "tailwind",
    "shadcn"
  ],
  "type": "module",
  "exports": "./dist/index.js",
  "bin": "./dist/index.js",
  "scripts": {
    "dev": "tsup --watch",
    "build": "tsup",
    "typecheck": "tsc --noEmit",
    "start:dev": "cross-env COMPONENTS_REGISTRY_URL=http://localhost:3003 node dist/index.js",
    "start": "node dist/index.js",
    "format:write": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
    "format:check": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache",
    "test": "vitest run"
  },
  "dependencies": {
    "chalk": "^5.4.1"
  },
  "devDependencies": {
    "tsup": "^6.6.3"
  }
}

Frequently Asked Questions

What does package.json do?
package.json is a source file in the ui codebase, written in json.
Where is package.json in the architecture?
package.json is located at deprecated/cli/package.json (directory: deprecated/cli).

Analyze Your Own Codebase

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

Try Supermodel Free