This repository was archived by the owner on Nov 9, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (99 loc) · 3.54 KB
/
package.json
File metadata and controls
100 lines (99 loc) · 3.54 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
94
95
96
97
98
99
100
{
"name": "ue4-cpptools",
"displayName": "ue4-cpptools",
"description": "VSCode Tools for working with Unreal Engine 4 C++ projects",
"version": "0.1.2",
"publisher": "christopherreed",
"repository": {
"type": "git",
"url": "https://github.com/christopherreed/ue4-cpptools"
},
"bugs" : {
"url" : "https://github.com/christopherreed/ue4-cpptools/issues"
},
"license": "MIT",
"readme" : "README.md",
"engines": {
"vscode": "^1.15.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:ue4-cpptools.generateCppToolsConfiguration",
"onCommand:ue4-cpptools.searchOnlineDocumentation",
"onCommand:ue4-cpptools.generateTaskConfigurations",
"onCommand:ue4-cpptools.generateDebugConfigurations"
],
"main": "./src/extension",
"contributes": {
"commands": [
{
"command": "ue4-cpptools.generateCppToolsConfiguration",
"title": "Generate CppTools Configuration",
"category": "UE4 Tools"
},
{
"command": "ue4-cpptools.searchOnlineDocumentation",
"title": "Search Unreal Engine Online Documenation",
"category": "UE4 Tools"
},
{
"command": "ue4-cpptools.generateTaskConfigurations",
"title": "Generate Task Configurations",
"category": "UE4 Tools"
},
{
"command": "ue4-cpptools.generateDebugConfigurations",
"title": "Generate Debug Configurations",
"category": "UE4 Tools"
}
],
"configuration": {
"type": "object",
"title": "UE4 CppTools Configuration",
"properties": {
"ue4-cpptools.engineRootPath": {
"type": "string",
"description": "Path to Unreal Engine root directory"
},
"ue4-cpptools.engineVersion": {
"type": "string",
"description": "Unreal Engine version"
},
"ue4-cpptools.configurationName": {
"type": "string",
"description": "Name used for generated configurations"
},
"ue4-cpptools.overrideUnrealBuildTool": {
"type": "string",
"description": "Advanced - Override the command to run Unreal Build Tool"
},
"ue4-cpptools.buildConfigurations": {
"type" : "array",
"description" : "Unreal Build Tool build configurations to generate tasks for"
},
"ue4-cpptools.buildConfigurationTargets": {
"type": "array",
"description" : "Unreal Build Tool build configuration targets to generate tasks for"
},
"ue4-cpptools.overrideUnrealEditor": {
"type": "string",
"description": "Advanced - Override the command to run Unreal Editor"
}
}
}
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.0.3",
"vscode": "^1.0.0",
"mocha": "^2.3.3",
"eslint": "^3.6.0",
"@types/node": "^6.0.40",
"@types/mocha": "^2.2.32"
}
}