-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
52 lines (52 loc) · 1.28 KB
/
package.json
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
{
"name": "@clangd/install",
"version": "0.1.19",
"description": "Installing clangd binaries from editor plugins.",
"main": "out/src/index.js",
"files": [
"out/src/index.d.ts"
],
"scripts": {
"compile": "tsc -watch -p ./",
"test": "tsc -p ./ && NODE_OPTIONS='--enable-source-maps' tape 'out/test/**/*.js' | tap-spec",
"format": "prettier . --write",
"prepare": "tsc -p ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clangd/node-clangd.git"
},
"keywords": [
"clangd",
"coc",
"vscode"
],
"license": "Apache-2.0 WITH LLVM-exception",
"bugs": {
"url": "https://github.com/clangd/node-clangd/issues"
},
"dependencies": {
"adm-zip": "^0.5.14",
"node-fetch": "^2.7.0",
"readdirp": "^4.1.1",
"rimraf": "^6.0.1",
"semver": "^7.6.3",
"which": "^5.0.0"
},
"devDependencies": {
"@types/adm-zip": "^0.5.5",
"@types/node": "^22.0.2",
"@types/node-fetch": "^2.6.11",
"@types/node-static": "^0.7.11",
"@types/semver": "^7.5.8",
"@types/tape": "^5.6.4",
"@types/tmp": "^0.2.6",
"@types/which": "^3.0.4",
"node-static": "^0.7.11",
"prettier": "^3.3.3",
"tap-spec": "^5.0.0",
"tape": "^5.8.1",
"tmp-promise": "^3.0.3",
"typescript": "^5.5.4"
}
}