{
  "name": "@czap/core",
  "version": "0.10.0",
  "description": "The heart of LiteShip: define UI boundaries, tokens, themes, and signals once as a content-addressed graph, then drive the engine that keeps every rendered output in sync.",
  "license": "MIT",
  "author": "Eassa Ayoub <eassa@heyoub.dev>",
  "repository": {
    "type": "git",
    "url": "https://github.com/freebatteryfactory/LiteShip",
    "directory": "packages/core"
  },
  "bugs": "https://github.com/freebatteryfactory/LiteShip/issues",
  "homepage": "https://github.com/freebatteryfactory/LiteShip#readme",
  "keywords": [
    "czap",
    "liteship",
    "adaptive-rendering",
    "constraint-based",
    "ui-framework",
    "typescript"
  ],
  "type": "module",
  "sideEffects": false,
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "//exports-allowlist": "SECURITY + LAYOUT-LOCK: the `exports` map is a CLOSED allowlist — only `.`, `./testing`, `./harness`, and `./simulation` are importable. There is DELIBERATELY no `\"./*\"` wildcard: a wildcard would expose every `src/*.ts` module as a public subpath, leaking the internal layout and preventing safe refactoring. The retained `\"./validated-output\": null` deny is belt-and-suspenders: validated-output.ts holds `mintValidated`, the sole mint site for the un-forgeable apply token, and exposing it as a public subpath would let a consumer forge a ValidatedProposal and bypass validation (lesson #12 — the RUNG_TARGETS subpath leak). Internal relative imports `./validated-output.js` are unaffected. Both halves (no-wildcard + the deny) are guarded by tests/unit/meta/validated-output-subpath-leak.test.ts.",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "development": "./src/index.ts"
    },
    "./testing": {
      "types": "./dist/testing.d.ts",
      "import": "./dist/testing.js",
      "development": "./src/testing.ts"
    },
    "./harness": {
      "types": "./dist/harness/index.d.ts",
      "import": "./dist/harness/index.js",
      "development": "./src/harness/index.ts"
    },
    "./simulation": {
      "types": "./dist/simulation/index.d.ts",
      "import": "./dist/simulation/index.js",
      "development": "./src/simulation/index.ts"
    },
    "./validated-output": null
  },
  "files": [
    "dist",
    "src",
    "LICENSE"
  ],
  "dependencies": {
    "@standard-schema/spec": "^1.1.0",
    "@noble/hashes": "^1.8.0",
    "cborg": "^4.2.0",
    "@czap/error": "0.10.0",
    "@czap/_spine": "0.10.0",
    "@czap/canonical": "0.10.0"
  },
  "peerDependencies": {
    "effect": ">=4.0.0-beta.32 <5"
  },
  "engines": {
    "node": ">=22.13.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsc"
  }
}