{
  "name": "@syllst/core",
  "version": "0.7.0",
  "description": "Syllabus Syntax Tree (syllst) - Unist-based type definitions and validation schemas for language learning syllabi",
  "license": "MIT",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./types": {
      "types": "./dist/types/index.d.ts",
      "default": "./dist/types/index.js"
    },
    "./schemas": {
      "types": "./dist/schemas/index.d.ts",
      "default": "./dist/schemas/index.js"
    }
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/fustilio/syllst.git",
    "directory": "packages/syllst"
  },
  "dependencies": {
    "@types/unist": "^3.0.3",
    "zod": "^4.3.6"
  },
  "devDependencies": {
    "typescript": "^5.9.3",
    "vite": "^6.3.0",
    "vite-plugin-dts": "^4.5.0",
    "vitest": "^4.0.18"
  },
  "keywords": [
    "syllabus",
    "unist",
    "syntax-tree",
    "types",
    "language-learning",
    "curriculum",
    "ast",
    "validation",
    "zod"
  ],
  "homepage": "https://github.com/fustilio/syllst#readme",
  "bugs": {
    "url": "https://github.com/fustilio/syllst/issues"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "vite build",
    "typecheck": "tsc --noEmit",
    "test": "vitest",
    "test:run": "vitest run"
  }
}