-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
147 lines (147 loc) · 4.17 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "cortex-command-community-project-language-support",
"displayName": "Cortex Command Community Project Language Support",
"description": "INI language support for development of content for the game Cortex Command",
"icon": "icon.png",
"version": "1.4.1",
"publisher": "CortexCommandCommunityProject",
"license": "LICENSE.md",
"repository": {
"type": "git",
"url": "https://github.com/cortex-command-community/Cortex-Command-Community-Project-VSCode-Extension.git"
},
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"Cortex",
"Cortex Command",
"Modding",
"CCCP",
"Cortex Command Community Project"
],
"main": "dist/packages/client/src/extension.js",
"activationEvents": [],
"contributes": {
"configuration": {
"type": "object",
"title": "Cortex Command INI Language Options",
"properties": {
"cortexCommandLanguageSupport.maxNumberOfProblems": {
"scope": "resource",
"type": "number",
"default": 100,
"description": "Controls the maximum number of problems produced by the server."
},
"cortexCommandLanguageSupport.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "verbose",
"description": "Traces the communication between VS Code and the language server."
},
"cortexCommandLanguageSupport.gameDirectoryPath": {
"scope": "resource",
"type": "string",
"default": ".",
"description": "The path to the Cortex Command game directory. Required if developing the mod outside the game directory.",
"format": "string"
}
}
},
"languages": [
{
"id": "ccini",
"aliases": [
"INI (Cortex Command)",
"ccini"
],
"extensions": [
".ini"
],
"configuration": "dist/packages/syntaxes/language-configuration.json"
}
],
"grammars": [
{
"language": "ccini",
"scopeName": "source.ccini",
"path": "dist/packages/syntaxes/ccini.tmLanguage.json"
}
],
"snippets": [
{
"language": "ccini",
"path": "dist/packages/syntaxes/snippets.json"
}
]
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@nrwl/cypress": "19.1.1",
"@nrwl/esbuild": "19.1.1",
"@nrwl/eslint-plugin-nx": "19.1.1",
"@nrwl/jest": "19.1.1",
"@nrwl/js": "19.1.1",
"@nrwl/linter": "19.1.1",
"@nrwl/node": "19.1.1",
"@nrwl/web": "19.1.1",
"@nrwl/webpack": "19.1.1",
"@nrwl/workspace": "19.1.1",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/glob": "^8.0.1",
"@types/jest": "28.1.1",
"@types/mocha": "^10.0.1",
"@types/node": "18.16.9",
"@types/vscode": "^1.74.0",
"@typescript-eslint/eslint-plugin": "7.3.0",
"@typescript-eslint/parser": "7.3.0",
"@vscode/test-electron": "^2.2.2",
"@vscode/vsce": "^2.17.0",
"babel-jest": "^29.7.0",
"cypress": "^13.10.0",
"esbuild": "^0.19.2",
"eslint": "8.57.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-cypress": "2.13.4",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "28.1.1",
"js-yaml": "^4.1.0",
"nx": "19.1.1",
"prettier": "^2.8.3",
"semantic-release": "^24.0.0",
"ts-jest": "29.1.4",
"ts-loader": "^9.4.2",
"ts-node": "10.9.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.9.4",
"nx-cloud": "19.0.0"
},
"scripts": {
"prepare": "husky install"
},
"dependencies": {
"core-js": "^3.27.2",
"glob": "^8.1.0",
"mocha": "^10.2.0",
"path": "^0.12.7",
"regenerator-runtime": "0.13.7",
"tslib": "^2.5.0",
"vscode-languageclient": "^7.0.0",
"vscode-languageserver": "^7.0.0",
"vscode-languageserver-textdocument": "^1.0.8",
"vscode-test": "^1.6.1",
"vscode-uri": "^3.0.7"
}
}