-
-
Notifications
You must be signed in to change notification settings - Fork 959
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.33 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "coc.nvim-master",
"version": "0.0.82",
"description": "LSP based intellisense engine for neovim & vim8.",
"main": "./build/index.js",
"engines": {
"node": ">=20.19.0"
},
"type": "commonjs",
"scripts": {
"lint": "eslint . --quiet --concurrency auto",
"lint:typecheck": "tsc -p tsconfig.json",
"build": "rolldown -c",
"test": "vitest run",
"test-build": "vitest run --coverage",
"prepare": "rolldown -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neoclide/coc.nvim.git"
},
"keywords": [
"complete",
"neovim"
],
"author": "Qiming Zhao <chemzqm@gmail.com>",
"bugs": {
"url": "https://github.com/neoclide/coc.nvim/issues"
},
"homepage": "https://github.com/neoclide/coc.nvim#readme",
"devDependencies": {
"@types/cli-table": "^0.3.4",
"@types/debounce": "^1.2.4",
"@types/fb-watchman": "^2.0.6",
"@types/follow-redirects": "^1.14.4",
"@types/node": "^20.19.39",
"@types/semver": "^7.7.1",
"@types/unidecode": "^1.1.0",
"@types/which": "^3.0.4",
"@vitest/coverage-v8": "^4.1.6",
"@vitest/eslint-plugin": "^1.6.17",
"eslint": "^10.2.1",
"eslint-formatter-unix": "^9.0.1",
"eslint-plugin-jsdoc": "^62.9.0",
"globals": "^17.5.0",
"rolldown": "^1.0.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.1",
"vitest": "^4.1.6",
"vscode-languageserver": "^10.0.0-next.17"
},
"dependencies": {
"@chemzqm/neovim": "^6.3.6",
"ansi-styles": "^6.2.3",
"bytes": "^3.1.2",
"cli-table": "^0.3.11",
"content-disposition": "^1.1.0",
"debounce": "^3.0.0",
"decompress-response": "^10.0.0",
"fast-diff": "^1.3.0",
"fb-watchman": "^2.0.2",
"follow-redirects": "^1.16.0",
"glob": "^13.0.6",
"http-proxy-agent": "^9.0.0",
"https-proxy-agent": "^9.0.0",
"iconv-lite": "^0.7.2",
"jsonc-parser": "^3.3.1",
"marked": "^10.0.0",
"minimatch": "^10.2.5",
"semver": "^7.7.4",
"strip-ansi": "^7.2.0",
"tar": "^7.5.13",
"tslib": "^2.8.1",
"unidecode": "^1.1.0",
"unzip-stream": "^0.3.4",
"uuid": "^14.0.0",
"vscode-languageserver-protocol": "^3.17.6-next.17",
"vscode-languageserver-textdocument": "^1.0.12",
"vscode-languageserver-types": "^3.17.6-next.6",
"vscode-uri": "^3.1.0",
"which": "^6.0.1"
}
}