{
  "name": "@lapidist/design-lint",
  "version": "8.0.0",
  "description": "Design System Runtime — DSR kernel, DSQL, and lint surface for design token governance",
  "type": "module",
  "main": "dist/index.js",
  "bin": {
    "design-lint": "dist/cli/index.js"
  },
  "exports": {
    ".": {
      "source": "./src/index.ts",
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./cli": {
      "source": "./src/cli/index.ts",
      "types": "./dist/cli/index.d.ts",
      "default": "./dist/cli/index.js"
    },
    "./core": {
      "source": "./src/core/index.ts",
      "types": "./dist/core/index.d.ts",
      "default": "./dist/core/index.js"
    }
  },
  "engines": {
    "node": ">=22"
  },
  "keywords": [
    "design-system-runtime",
    "dsr",
    "dsql",
    "dscp",
    "design-tokens",
    "dtif",
    "kernel",
    "lint",
    "cli",
    "mcp",
    "lsp"
  ],
  "author": "Brett Dorrans <hello@lapidist.net>",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/bylapidist/design-lint.git"
  },
  "bugs": {
    "url": "https://github.com/bylapidist/design-lint/issues"
  },
  "homepage": "https://design-lint.lapidist.net",
  "license": "MIT",
  "dependencies": {
    "@lapidist/dscp": "0.2.4",
    "@lapidist/dsr": "0.2.0",
    "@lapidist/dtif-parser": "2.0.0",
    "@lapidist/dtif-schema": "2.0.0",
    "@lapidist/dtif-validator": "2.0.0",
    "@vue/compiler-dom": "3.5.34",
    "@vue/compiler-sfc": "3.5.34",
    "ajv": "8.20.0",
    "chalk": "5.6.2",
    "chokidar": "5.0.0",
    "color-name": "2.1.0",
    "color-string": "2.1.4",
    "commander": "14.0.3",
    "cosmiconfig": "9.0.1",
    "cosmiconfig-typescript-loader": "6.3.0",
    "culori": "4.0.2",
    "flat-cache": "6.1.22",
    "globby": "16.2.0",
    "ignore": "7.0.5",
    "leven": "4.1.0",
    "p-limit": "7.3.0",
    "picomatch": "4.0.4",
    "postcss": "8.5.14",
    "postcss-less": "6.0.0",
    "postcss-scss": "4.0.9",
    "postcss-value-parser": "4.2.0",
    "svelte": "5.55.5",
    "tempy": "3.2.0",
    "typescript": "6.0.3",
    "write-file-atomic": "8.0.0",
    "zod": "4.4.3"
  },
  "devDependencies": {
    "@changesets/cli": "2.31.0",
    "@lapidist/eslint-config": "1.0.0",
    "@types/color-name": "2.0.0",
    "@types/culori": "4.0.1",
    "@types/node": "25.7.0",
    "@types/picomatch": "4.0.3",
    "@types/postcss-less": "4.0.7",
    "@types/write-file-atomic": "4.0.3",
    "@typescript-eslint/eslint-plugin": "8.59.3",
    "@typescript-eslint/parser": "8.59.3",
    "c8": "11.0.0",
    "eslint": "10.3.0",
    "markdownlint": "0.40.0",
    "markdownlint-cli": "0.48.0",
    "prettier": "3.8.3",
    "tsx": "4.21.0",
    "vitepress": "1.6.4"
  },
  "c8": {
    "check-coverage": true,
    "branches": 75,
    "functions": 75,
    "lines": 80,
    "statements": 80,
    "include": [
      "src/**/*.ts"
    ]
  },
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsc -p tsconfig.json",
    "lint": "eslint 'src/**/*.{ts,tsx}' 'tests/**/*.ts'",
    "format": "prettier --write 'src/**/*.ts' 'tests/**/*.ts'",
    "format:check": "prettier --check 'src/**/*.ts' 'tests/**/*.ts'",
    "test": "tsx --test 'tests/**/*.test.ts'",
    "test:watch": "tsx --watch 'tests/**/*.test.ts'",
    "test:coverage": "c8 --reporter=lcov --reporter=text --reporter=json-summary tsx --conditions=source --test --test-force-exit 'tests/**/*.test.ts'",
    "changeset": "changeset",
    "release": "pnpm run build && changeset publish",
    "docs:dev": "vitepress dev docs",
    "docs:build": "vitepress build docs",
    "docs:preview": "vitepress preview docs",
    "lint:md": "markdownlint '**/*.md'"
  }
}