Skip to content

Commit 15a2d38

Browse files
committed
docs: add keywords and default config settings
1 parent 779d4f1 commit 15a2d38

File tree

5 files changed

+40
-3
lines changed

5 files changed

+40
-3
lines changed

client/package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
{
22
"name": "ccini-client",
33
"version": "0.0.1",
4+
"repository": {
5+
"type": "git",
6+
"url": "https://github.com/cortex-command-community/Cortex-Command-Community-Project-VSCode-Extension.git"
7+
},
48
"engines": {
5-
"vscode": "^1.63.0"
9+
"vscode": "^1.74.0"
610
},
711
"dependencies": {
812
"vscode-languageclient": "^7.0.0"

package.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,38 @@
1616
"categories": [
1717
"Programming Languages"
1818
],
19+
"keywords": [
20+
"Cortex",
21+
"Cortex Command",
22+
"Modding",
23+
"CCCP",
24+
"Cortex Command Community Project"
25+
],
26+
"main": "./dist/client/extension",
1927
"contributes": {
28+
"configuration": {
29+
"type": "object",
30+
"title": "Example configuration",
31+
"properties": {
32+
"languageServerExample.maxNumberOfProblems": {
33+
"scope": "resource",
34+
"type": "number",
35+
"default": 100,
36+
"description": "Controls the maximum number of problems produced by the server."
37+
},
38+
"languageServerExample.trace.server": {
39+
"scope": "window",
40+
"type": "string",
41+
"enum": [
42+
"off",
43+
"messages",
44+
"verbose"
45+
],
46+
"default": "off",
47+
"description": "Traces the communication between VS Code and the language server."
48+
}
49+
}
50+
},
2051
"languages": [
2152
{
2253
"id": "ccini",

server/package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
{
22
"name": "ccini-server",
33
"version": "1.0.0",
4+
"repository": {
5+
"type": "git",
6+
"url": "https://github.com/cortex-command-community/Cortex-Command-Community-Project-VSCode-Extension.git"
7+
},
48
"engines": {
59
"node": "*"
610
},

server/src/index.ts

Lines changed: 0 additions & 1 deletion
This file was deleted.

server/tsconfig.lib.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"extends": "./tsconfig.json",
33
"compilerOptions": {
44
"module": "commonjs",
5-
"outDir": "../dist/out-tsc",
65
"declaration": true,
76
"types": ["node"]
87
},

0 commit comments

Comments
 (0)