{
  "name": "@substrat-run/kernel",
  "version": "0.116.0",
  "description": "Substrat kernel contracts and services — pure TypeScript, no platform imports (D-14)",
  "license": "AGPL-3.0-only",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/substrat-run/substrat.git",
    "directory": "packages/kernel"
  },
  "homepage": "https://substrat.net/reference/kernel",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    }
  },
  "files": [
    "dist"
  ],
  "dependencies": {
    "@substrat-run/contracts": "^0.116.0"
  },
  "devDependencies": {
    "@types/node": "^22.0.0",
    "hono": "^4.6.0",
    "typescript": "^7.0.0",
    "vitest": "^3.2.7"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsc -p tsconfig.json",
    "typecheck": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.test.json --noEmit",
    "test": "vitest run"
  }
}