-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (77 loc) · 2.42 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
{
"name": "hxmanager",
"displayName": "Haxe Manager",
"publisher": "jarrio",
"repository": {
"type": "git",
"url": "https://github.com/Jarrio/Haxe-Manager.git"
},
"keywords": [
"haxe", "snippets", "openfl", "haxeflixel, kha, haxe-react-native"
],
"icon": "images/haxe-logo.png",
"version": "0.4.5",
"engines": {
"vscode": "^1.4.0"
},
"activationEvents": [
"*"
],
"main": "./main",
"contributes": {
"snippets": [
{
"language": "haxe",
"path": "./snippets/haxe.json"
}
],
"configuration": {
"title": "Open in a new window",
"properties": {
"hxmanager.newWindow": {
"description": "Open new projects in a new window",
"type": "boolean",
"default": true
},
"hxmanager.projectsRoot": {
"description": "The default location to save your projects",
"type": "string",
"default": null
},
"hxmanager.projectType": {
"description": "Used internally to help aid class generation etc",
"type":"array",
"default": ["Haxe"]
},
"hxmanager.templatePath": {
"description": "Setup an alternative templates source",
"type": "string",
"default": null
},
"hxmanager.khaPath": {
"description": "Path to Kha source files",
"type": "string",
"default": null
}
}
},
"commands": [
{
"command": "hxmanager.ProjectManager",
"title": "Haxe: Project Manager"
},
{
"command": "hxmanager.CreateProjects",
"title": "Haxe: Create a Project"
},
{
"command": "hxmanager.SelectTask",
"title": "Haxe: Task Selector"
},
{
"command": "hxmanager.SetupKha",
"title": "Haxe: Setup Kha Path"
}
]
}
}