-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.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
{
"name": "vshaxe-build",
"displayName": "VSHaxe-Build",
"description": "Tasks and completion for vshaxe-build.json projects.",
"publisher": "vshaxe",
"version": "0.0.1",
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/vshaxe/vshaxe-build"
},
"engines": {
"vscode": "^1.31.0",
"nadako.vshaxe": "^2.5.0"
},
"extensionDependencies": [
"nadako.vshaxe"
],
"devDependencies": {
"lix": "^15.8.9"
},
"scripts": {
"postinstall": "lix download"
},
"activationEvents": [
"workspaceContains:vshaxe-build.json"
],
"main": "./extension.js",
"contributes": {
"taskDefinitions": [
{
"type": "vshaxe-build",
"required": [
"target"
],
"properties": {
"target": {
"type": "string",
"description": "The target name."
}
}
}
],
"jsonValidation": [
{
"fileMatch": "vshaxe-build.json",
"url": "./schemas/vshaxe-build.schema.json"
},
{
"fileMatch": "vshaxe-build-defaults.json",
"url": "./schemas/vshaxe-build.schema.json"
}
]
}
}