{
  "name": "@substructure.ai/runtime",
  "version": "0.2.3",
  "description": "In-process Substructure runtime for Node.js",
  "license": "FSL-1.1-ALv2",
  "type": "module",
  "homepage": "https://github.com/substructureai/substructure#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/substructureai/substructure.git",
    "directory": "packages/runtime"
  },
  "bugs": {
    "url": "https://github.com/substructureai/substructure/issues"
  },
  "keywords": [
    "substructure",
    "ai",
    "agents",
    "llm",
    "durable",
    "runtime",
    "napi"
  ],
  "publishConfig": {
    "access": "public"
  },
  "main": "./index.js",
  "types": "./index.d.ts",
  "files": [
    "index.js",
    "index.d.ts",
    "LICENSE",
    "README.md"
  ],
  "napi": {
    "binaryName": "substructure-napi",
    "packageName": "@substructure.ai/runtime",
    "targets": [
      "aarch64-apple-darwin",
      "x86_64-apple-darwin",
      "aarch64-unknown-linux-gnu",
      "x86_64-unknown-linux-gnu"
    ]
  },
  "scripts": {
    "build": "napi build --manifest-path ../../crates/napi/Cargo.toml --platform --js false --dts false --output-dir .",
    "build:release": "napi build --manifest-path ../../crates/napi/Cargo.toml --platform --release --js false --dts false --output-dir .",
    "artifacts": "napi artifacts --output-dir ./artifacts",
    "prepublish:platforms": "napi prepublish -t npm"
  },
  "optionalDependencies": {
    "@substructure.ai/runtime-darwin-arm64": "0.2.3",
    "@substructure.ai/runtime-darwin-x64": "0.2.3",
    "@substructure.ai/runtime-linux-arm64-gnu": "0.2.3",
    "@substructure.ai/runtime-linux-x64-gnu": "0.2.3"
  }
}