-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 2.99 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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "vscode-clangd-cmake",
"displayName": "clangd: CMake integration",
"description": "Add CMake integration for clangd",
"author": "SR_team",
"publisher": "sr-team",
"icon": "logo.png",
"license": "MIT",
"version": "0.1.1",
"repository": {
"type": "git",
"url": "https://github.com/sr-tream/vscode-clangd-cmake.git"
},
"engines": {
"vscode": "^1.65.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"C",
"C++",
"CUDA",
"clang",
"clangd",
"cmake"
],
"activationEvents": [
"onLanguage:c",
"onLanguage:cpp",
"onLanguage:cuda-cpp",
"onLanguage:objective-c",
"onLanguage:objective-cpp"
],
"main": "./out/extension.js",
"exclude": [
"./vscode-clangd/**"
],
"contributes": {
"configuration": {
"type": "object",
"title": "clangd: CMake integration",
"properties": {
"clangd.useBinaryFromToolchain": {
"type": "boolean",
"default": false,
"markdownDescription": "**Experimental**\n\nuse `clangd` binary from toolchain.\n\nThis option modifies workspace `clangd.path` setting and restarts clangd server.",
"order": 0
},
"clangd.pathFallback": {
"type": "string",
"default": "",
"markdownDescription": "Fallback path to clangd binary for `clangd.useBinaryFromToolchain` setting.\n\nBy default this setting copying `clangd.path` to workspace settings.",
"order": 1
},
"clangd.resourceDir.passForClangToolchains": {
"type": "boolean",
"default": false,
"markdownDescription": "**Experimental**\n\nAdd path to resource dir to clangd command line arguments.\n\nThis option modifies workspace `clangd.arguments` setting and restarts clangd server.",
"order": 2
},
"clangd.resourceDir.passForGccToolchains": {
"type": "boolean",
"default": false,
"markdownDescription": "**Experimental**\n\nAdd path to resource dir to clangd command line arguments.\n\nThis option modifies workspace `clangd.arguments` setting and restarts clangd server.",
"order": 3
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test"
},
"dependencies": {
"@clangd/vscode-clangd": "./vscode-clangd/api",
"vscode-languageclient": "8.0.2",
"vscode-cmake-tools": "^1.2.0"
},
"devDependencies": {
"@types/vscode": "^1.65.0",
"@types/mocha": "^10.0.7",
"@types/node": "20.x",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.11.0",
"eslint": "^8.57.0",
"typescript": "^5.4.5",
"@vscode/test-cli": "^0.0.9",
"@vscode/test-electron": "^2.4.0"
},
"extensionDependencies": [
"llvm-vs-code-extensions.vscode-clangd",
"ms-vscode.cmake-tools"
]
}