coc-dictd
Version:
dictd extension for coc.nvim
84 lines (83 loc) • 2.17 kB
JSON
{
"name": "coc-dictd",
"version": "0.1.5",
"description": "dictd extension for coc.nvim",
"author": "Jee Wan Gue <jeewangue@gmail.com>",
"homepage": "https://github.com/jeewangue/coc-dictd",
"repository": {
"type": "git",
"url": "git+https://github.com/jeewangue/coc-dictd.git"
},
"license": "MIT",
"main": "lib/index.js",
"keywords": [
"vim",
"neovim",
"coc.nvim",
"dictd",
"dictionary"
],
"engines": {
"coc": "^0.0.80"
},
"scripts": {
"lint": "eslint src --ext ts",
"clean": "rimraf lib",
"watch": "node esbuild.js --watch",
"build": "node esbuild.js",
"prepare": "node esbuild.js"
},
"prettier": {
"singleQuote": true,
"printWidth": 120,
"semi": true
},
"activationEvents": [
"*"
],
"contributes": {
"configuration": {
"type": "object",
"title": "coc-dictd configuration",
"properties": {
"dictd.enabled": {
"type": "boolean",
"default": true,
"description": "Enable coc-dictd extension"
},
"dictd.timeout": {
"type": "number",
"default": "5000",
"description": "The timeout in milliseconds for search"
},
"dictd.server": {
"type": "string",
"default": "dict.org",
"description": "The server address using DICT protocol. (If you are using `dictd` as a local service, the server is `localhost`)"
},
"dictd.databases": {
"type": "string",
"default": "*",
"description": "database to be used in DICT protocol. `*` means all databases"
}
}
}
},
"devDependencies": {
"coc-helper": "^0.15.2",
"lodash-es": "^4.17.21",
"@types/lodash-es": "^4.17.6",
"@types/node": "^18.8.3",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"coc.nvim": "^0.0.82",
"esbuild": "^0.15.10",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"typescript": "^4.6.2"
},
"dependencies": {}
}