{
  "name": "@just-web/app",
  "version": "7.3.2",
  "description": "Just a web application framework",
  "keywords": [
    "just-web",
    "framework"
  ],
  "homepage": "https://github.com/justland/just-web/tree/main/frameworks/app",
  "bugs": {
    "url": "https://github.com/justland/just-web/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/justland/just-web.git",
    "directory": "frameworks/app"
  },
  "license": "MIT",
  "author": {
    "name": "Homa Wong (unional)",
    "email": "homawong@gmail.com",
    "url": "https://github.com/unional"
  },
  "sideEffects": false,
  "type": "module",
  "exports": {
    ".": {
      "import": {
        "types": "./esm/index.d.ts",
        "default": "./esm/index.mjs"
      },
      "require": {
        "types": "./cjs/index.d.cts",
        "default": "./cjs/index.cjs"
      },
      "default": "./esm/index.mjs"
    },
    "./testing": {
      "import": {
        "types": "./esm/testing/index.d.ts",
        "default": "./esm/testing/index.mjs"
      },
      "require": {
        "types": "./cjs/testing/index.d.cts",
        "default": "./cjs/testing/index.cjs"
      },
      "default": "./esm/testing/index.mjs"
    }
  },
  "main": "./cjs/index.cjs",
  "module": "./esm/index.mjs",
  "types": "./esm/index.d.ts",
  "files": [
    "cjs",
    "esm",
    "testing",
    "src",
    "!**/*.{spec,test,unit,accept,integrate,system,perf,stress}.*"
  ],
  "dependencies": {
    "@unional/gizmo": "^2.2.0",
    "iso-error": "~6.0.2",
    "type-plus": "8.0.0-beta.7",
    "@just-web/id": "^7.3.2",
    "@just-web/log": "^7.3.2"
  },
  "devDependencies": {
    "@repobuddy/typescript": "^2.1.0",
    "@repobuddy/vitest": "^2.1.1",
    "@size-limit/preset-small-lib": "~11.2.0",
    "@types/ramda": "^0.31.0",
    "@vitest/coverage-v8": "^4.0.15",
    "assertron": "^11.2.0",
    "npm-run-all2": "^6.0.0",
    "ramda": "^0.32.0",
    "repobuddy": "^1.0.1",
    "rimraf": "~6.1.0",
    "size-limit": "~12.0.0",
    "tsdown": "^0.17.0",
    "vitest": "^4.0.15",
    "@just-web/repo-scripts": "^0.3.1"
  },
  "scripts": {
    "build": "run-s build:code build:types",
    "build:code": "tsdown --tsconfig tsconfig.build.json",
    "build:types": "tsc -p tsconfig.build.json --emitDeclarationOnly",
    "clean": "rimraf cjs esm coverage lib --glob *.tsbuildinfo",
    "coverage": "vitest run --coverage",
    "nuke": "rimraf node_modules",
    "size": "size-limit",
    "test": "vitest run",
    "test:watch": "vitest",
    "verify": "npm-run-all -p build lint coverage -p size",
    "w": "pnpm test:watch"
  }
}