{
  "name": "coc-prisma",
  "version": "0.13.0",
  "description": "Coc extension that implements Prisma Language Server",
  "author": "Harshit Pant <pantharshit00@gmail.com>",
  "repository": {
    "type": "git",
    "url": "https://github.com/pantharshit00/coc-prisma"
  },
  "license": "MIT",
  "main": "lib/index.js",
  "keywords": [
    "coc.nvim"
  ],
  "engines": {
    "coc": "^0.0.82"
  },
  "scripts": {
    "clean": "rimraf lib",
    "watch": "npm run dev -- -w",
    "build": "tsc",
    "prepare": "npm-run-all clean build"
  },
  "devDependencies": {
    "@types/node": "^24.3.0",
    "coc.nvim": "0.0.82",
    "npm-run-all": "^4.1.5",
    "rimraf": "^6.0.1",
    "ts-loader": "^9.5.4",
    "typescript": "^5.9.2"
  },
  "activationEvents": [
    "onLanguage:prisma"
  ],
  "dependencies": {
    "@prisma/language-server": "^6.15.0"
  },
  "contributes": {
    "commands": [
      {
        "command": "coc-prisma.restartLanguageServer",
        "title": "Restart Prisma Language Server",
        "category": "Prisma"
      }
    ]
  }
}
