-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
129 lines (129 loc) · 3.04 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
{
"name": "xcodebuild-tools",
"displayName": "Xcodebuild Tools",
"description": "Work with Xcode projects from inside Visual Studio Code",
"version": "0.0.8",
"publisher": "sterin",
"homepage": "https://github.com/sterin/vscode-xcodebuild-tools/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/sterin/vscode-xcodebuild-tools.git"
},
"bugs": {
"url": "https://github.com/sterin/vscode-xcodebuild-tools/issues"
},
"engines": {
"vscode": "^1.19.0"
},
"license": "SEE LICENSE IN LICENSE.md",
"categories": [
"Other"
],
"keywords": [
"Xcode",
"Xcodebuild",
"osx",
"macOS"
],
"activationEvents": [
"onCommand:xcodebuild-tools.build",
"onCommand:xcodebuild-tools.clean",
"onCommand:xcodebuild-tools.debug",
"onCommand:xcodebuild-tools.profile",
"onCommand:xcodebuild-tools.run",
"onCommand:xcodebuild-tools.kill",
"onCommand:xcodebuild-tools.selectBuildConfiguration",
"onCommand:xcodebuild-tools.selectDebugConfiguration",
"onCommand:xcodebuild-tools.openXcode",
"workspaceContains:.vscode/xcodebuild-tools.json"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "xcodebuild-tools.build",
"title": "Build",
"category": "Xcodebuild-tools"
},
{
"command": "xcodebuild-tools.clean",
"title": "Clean",
"category": "Xcodebuild-tools"
},
{
"command": "xcodebuild-tools.debug",
"title": "Launch Debug Session",
"category": "Xcodebuild-tools"
},
{
"command": "xcodebuild-tools.profile",
"title": "Profile Program",
"category": "Xcodebuild-tools"
},
{
"command": "xcodebuild-tools.run",
"title": "Run without Debugging",
"category": "Xcodebuild-tools"
},
{
"command": "xcodebuild-tools.kill",
"title": "Kill Build",
"category": "Xcodebuild-tools"
},
{
"command": "xcodebuild-tools.selectBuildConfiguration",
"title": "Select Build Configuration",
"category": "Xcodebuild-tools"
},
{
"command": "xcodebuild-tools.selectDebugConfiguration",
"title": "Select Debug Configuration",
"category": "Xcodebuild-tools"
},
{
"command": "xcodebuild-tools.openXcode",
"title": "Open Xcode",
"category": "Xcodebuild-tools"
}
],
"keybindings": [
{
"key": "f7",
"command": "xcodebuild-tools.build"
},
{
"key": "ctrl+f5",
"command": "xcodebuild-tools.debug"
},
{
"key": "alt+shift+f5",
"command": "xcodebuild-tools.run"
}
],
"jsonValidation": [
{
"fileMatch": ".vscode/xcodebuild-tools.json",
"url": "./schemas/xcodebuild-tools-schema.json"
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.41",
"@types/node": "^8.0.15",
"mocha": "^3.4.2",
"typescript": "^2.4.2",
"vscode": "^1.1.10"
},
"extensionDependencies": [
"ms-vscode.cpptools"
],
"dependencies": {
"ajv": "^5.2.2"
}
}