{
  "name": "@specmind/format",
  "version": "0.5.1",
  "description": ".sm file format parser and writer",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.js"
    }
  },
  "files": [
    "dist"
  ],
  "keywords": [
    "specmind",
    "architecture",
    "documentation",
    "mermaid",
    "sm-format",
    "parser"
  ],
  "author": "SpecMind",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/specmind/specmind.git",
    "directory": "packages/format"
  },
  "dependencies": {
    "zod": "^3.22.4"
  },
  "devDependencies": {
    "typescript": "^5.6.3",
    "vitest": "^3.2.4"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsc",
    "test": "vitest",
    "lint": "tsc --noEmit",
    "clean": "rm -rf dist",
    "validate-fixtures": "node test-fixtures/validate-fixtures.mjs"
  }
}