-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.58 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.58 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
84
85
86
87
88
89
90
91
92
93
{
"name": "cpp2-lsp",
"description": "Experimental language server for cpp2/cppfront",
"author": "Vance Palacio",
"license": "MIT",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/vanceism7/ls-cpp2"
},
"publisher": "vp",
"categories": [],
"keywords": [
"multi-root ready"
],
"engines": {
"vscode": "^1.75.0"
},
"activationEvents": [
"onLanguage:cpp2"
],
"main": "./client/out/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "ls-cpp2",
"properties": {
"cppfront.cppfrontPath": {
"scope": "resource",
"type": "string",
"default": "cppfront",
"description": "Path to your cppfront binary"
},
"cppfront.cppfrontIncludePath": {
"scope": "resource",
"type": "string",
"default": "",
"description": "Path to your cppfront include directory, needed to compile cpp files generated by cppfront. If no path is specified, ls-cpp2 will try to figure it out using cppfront's path"
},
"cppfront.cppCompilerPath": {
"scope": "resource",
"type": "string",
"default": "",
"description": "Path to your c++ compiler"
},
"cppfront.maxNumberOfProblems": {
"scope": "resource",
"type": "number",
"default": 100,
"description": "Controls the maximum number of problems produced by the server."
},
"cppfront.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the language server."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"lint": "eslint ./client/src ./server/src --ext .ts,.tsx",
"postinstall": "cd client && npm install && cd ../server && npm install && cd ..",
"test": "mocha"
},
"devDependencies": {
"@types/chai": "^5.0.0",
"@types/mocha": "^10.0.6",
"@types/node": "^20",
"@types/which": "^3.0.4",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"chai": "^4.5.0",
"eslint": "^8.57.0",
"mocha": "^10.3.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"dependencies": {
"@types/sarif": "^2.1.7",
"@vscode/vsce": "^3.6.0",
"glob": "^11.0.0",
"which": "^5.0.0"
}
}