{
  "name": "@exabugs/mobilespec",
  "version": "1.1.8",
  "type": "module",
  "description": "モバイルアプリ仕様管理ライブラリ - L2/L3/L4仕様の定義、バリデーション、生成ツール",
  "keywords": [
    "mobile",
    "specification",
    "validation",
    "yaml",
    "mermaid",
    "i18n",
    "screen-flow",
    "ui-spec"
  ],
  "homepage": "https://github.com/exabugs/mobilespec#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/exabugs/mobilespec.git"
  },
  "bugs": {
    "url": "https://github.com/exabugs/mobilespec/issues"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "mobilespec": "dist/bin/cli.js"
  },
  "files": [
    "dist",
    "schema",
    "README.md",
    "LICENSE"
  ],
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./validate": {
      "import": "./dist/validate.js",
      "types": "./dist/validate.d.ts"
    },
    "./mermaid": {
      "import": "./dist/generateMermaid.js",
      "types": "./dist/generateMermaid.d.ts"
    },
    "./i18n": {
      "import": "./dist/generateI18n.js",
      "types": "./dist/generateI18n.d.ts"
    }
  },
  "author": "",
  "license": "MIT",
  "devDependencies": {
    "@trivago/prettier-plugin-sort-imports": "^6.0.2",
    "@types/js-yaml": "^4.0.9",
    "@types/node": "^20.19.30",
    "@typescript-eslint/eslint-plugin": "^8.43.0",
    "@typescript-eslint/parser": "^8.43.0",
    "eslint": "^9.35.0",
    "prettier": "^3.6.2",
    "typescript": "^5.4.5",
    "vitest": "^4.0.18"
  },
  "dependencies": {
    "ajv": "^8.17.1",
    "fast-glob": "^3.3.3",
    "js-yaml": "^4.1.1",
    "zod": "^4"
  },
  "optionalDependencies": {
    "ts-node": "^10.9.2",
    "tsx": "^4.7.0"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "scripts": {
    "build": "tsc",
    "dev:validate": "tsx src/validate.ts",
    "dev:mermaid": "tsx src/generateMermaid.ts",
    "dev:i18n": "tsx src/generateI18n.ts",
    "lint": "eslint \"src/**/*.ts\"",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:ui": "vitest --ui",
    "coverage": "vitest run --coverage"
  }
}