{
  "name": "@wifo/factory-core",
  "version": "0.0.14",
  "description": "Universal spec format, schema, parser, and lint CLI for software factories",
  "license": "MIT",
  "author": "Luis (WiFoDev)",
  "homepage": "https://github.com/WiFoDev/software-factory/tree/main/packages/core#readme",
  "bugs": {
    "url": "https://github.com/WiFoDev/software-factory/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/WiFoDev/software-factory.git",
    "directory": "packages/core"
  },
  "keywords": [
    "software-factory",
    "agents",
    "spec-driven",
    "spec",
    "lint",
    "init",
    "cli"
  ],
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "factory": "./dist/cli.js"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "commands",
    "README.md",
    "LICENSE"
  ],
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "yaml": "^2.5.0",
    "zod": "^3.23.8",
    "zod-to-json-schema": "^3.23.0"
  },
  "peerDependencies": {
    "@wifo/factory-spec-review": "0.0.14"
  },
  "peerDependenciesMeta": {
    "@wifo/factory-spec-review": {
      "optional": false
    }
  },
  "devDependencies": {
    "@types/bun": "^1.1.14",
    "ajv": "^8.17.0",
    "tsx": "^4.0.0"
  },
  "scripts": {
    "build": "tsc -p tsconfig.build.json && tsx scripts/emit-json-schema.ts",
    "typecheck": "tsc -p tsconfig.json --noEmit",
    "test": "bun test"
  }
}