{
  "name": "coc-pairs",
  "version": "1.5.5",
  "description": "Auto pair extension for coc.nvim",
  "main": "lib/index.js",
  "publisher": "chemzqm",
  "repository": {
    "type": "git",
    "url": "https://github.com/neoclide/coc-pairs.git"
  },
  "keywords": [
    "coc.nvim",
    "autopair"
  ],
  "engines": {
    "coc": "^0.0.80"
  },
  "files": [
    "lib",
    "!**/*.map"
  ],
  "scripts": {
    "lint": "tsc -p tsconfig.json",
    "build": "node esbuild.js",
    "prepare": "node esbuild.js",
    "test": "npm run build && coc-test 'test/**/*.test.ts'",
    "test:integration": "npm run build && coc-test 'test/**/*.test.ts'",
    "test:integration:nvim": "npm run build && coc-test --nvim 'test/**/*.test.ts'",
    "test:integration:vim": "npm run build && coc-test --vim 'test/**/*.test.ts'"
  },
  "coc-test": {
    "user-settings": {
      "pairs.disableLanguages": [
        "disabled"
      ]
    }
  },
  "activationEvents": [
    "*"
  ],
  "contributes": {
    "configuration": {
      "type": "object",
      "properties": {
        "pairs.disableLanguages": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "default": [],
          "scope": "application",
          "description": "A list of languages IDs to disable this extension on"
        },
        "pairs.disableBuftypes": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "default": [],
          "scope": "application",
          "description": "A list of buftypes to disable this extension on"
        },
        "pairs.enableCharacters": {
          "type": "array",
          "scope": "application",
          "items": {
            "type": "string"
          },
          "default": [
            "(",
            "[",
            "{",
            "<",
            "'",
            "\"",
            "`",
            "【",
            "「",
            "《",
            "『"
          ],
          "description": "Enabled character list for keymap."
        },
        "pairs.requireEOLCharacters": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "default": [],
          "scope": "application",
          "description": "Characters should be only paired at end of line."
        },
        "pairs.alwaysPairCharacters": {
          "type": "array",
          "scope": "application",
          "items": {
            "type": "string"
          },
          "default": [],
          "description": "Characters that should be paired without check for next character."
        },
        "pairs.enableBackspace": {
          "type": "boolean",
          "scope": "application",
          "description": "Remap your backspce to delete paired characters when necessary, won't work when <bs> already mapped.",
          "default": true
        }
      }
    }
  },
  "author": "chemzqm@gmail.com",
  "license": "MIT",
  "devDependencies": {
    "@chemzqm/tsconfig": "^0.0.3",
    "@types/node": "^22.20",
    "coc-test": "^0.1.6",
    "coc.nvim": "^0.0.83-next.26",
    "typescript": "^6.0.3",
    "esbuild": ">=0.28.2"
  },
  "allowScripts": {
    "esbuild": true
  }
}
