{
  "$schema": "https://json.schemastore.org/package.json",
  "name": "@stainless-api/codemirror-ts",
  "version": "3.0.1",
  "description": "codemirror extensions for typescript",
  "sideEffects": false,
  "repository": {
    "type": "git",
    "url": "https://github.com/val-town/codemirror-ts"
  },
  "homepage": "https://github.com/val-town/codemirror-ts",
  "keywords": [
    "codemirror",
    "typescript",
    "ts"
  ],
  "author": "Val Town",
  "license": "ISC",
  "peerDependencies": {
    "@codemirror/autocomplete": "^6",
    "@codemirror/lint": "^6",
    "@codemirror/state": "^6",
    "@codemirror/view": "^6"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.0.6",
    "@codemirror/lang-javascript": "^6.2.4",
    "@types/node": "^24.0.8",
    "@typescript/ata": "^0.9.8",
    "@typescript/vfs": "^1.6.1",
    "@vitest/coverage-v8": "^3.1.4",
    "codemirror": "^6.0.1",
    "comlink": "^4.4.2",
    "happy-dom": "^18.0.1",
    "typescript": "^5.8.3",
    "vite": "^7.0.0",
    "vitest": "^3.1.4"
  },
  "files": [
    "dist"
  ],
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      }
    },
    "./worker": {
      "import": {
        "types": "./dist/worker.d.ts",
        "default": "./dist/worker.js"
      }
    }
  },
  "types": "./dist/index.d.ts",
  "type": "module",
  "engines": {
    "node": "*"
  },
  "module": "./dist/index.js",
  "dependencies": {
    "@codemirror/language": "^6.11.0"
  },
  "scripts": {
    "dev": "vite",
    "typecheck": "tsc --noEmit",
    "lint": "biome check",
    "test": "vitest run",
    "test:watch": "vitest",
    "build": "vite build"
  }
}