# package.json

> 30 lines of code and 0 definitions.

Tree: Site tree
Language: json
Canonical: https://banes-lab.com/anatomy/tree#file-package-json
Source text: https://banes-lab.com/assets/sources/source.1d7f97cf70d7d1424e787643c42a33eec95e0c80bae3a88d38483e2b6802a888.generated.txt

## Source

```json
{
    "name": "@banes-lab/web",
    "version": "0.1.0",
    "private": true,
    "type": "module",
    "description": "The banes-lab.com site — a static document site built from typed sections, served by nginx from the Vite build.",
    "imports": {
        "#assets/*": "./core/assets/*.ts",
        "#configuration/*": "./configuration/*.ts",
        "#core/*": "./core/*.ts",
        "#domain/*": "./domain/*.ts",
        "#presentation/*": "./presentation/*.ts",
        "#runtime/*": "./runtime/*.ts",
        "#types/*": "./types/*.ts"
    },
    "main": "./runtime/entrypoints/site.entrypoint.ts",
    "exports": {
        ".": "./runtime/entrypoints/site.entrypoint.ts",
        "./*": "./*"
    },
    "scripts": {
        "build": "vite build",
        "dev": "vite --host",
        "preview": "vite preview",
        "typecheck": "tsc --noEmit -p tsconfig.json"
    },
    "dependencies": {
        "@govlab/constants": "*"
    }
}
```
