-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.11 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
{
"name": "vscode-feathersui",
"displayName": "Feathers UI",
"description": "Manage Feathers UI projects in VSCode",
"version": "1.1.0",
"private": true,
"publisher": "bowlerhatllc",
"author": {
"name": "Josh Tynjala"
},
"homepage": "https://feathersui.com/",
"repository": {
"type": "git",
"url": "https://github.com/BowlerHatLLC/vscode-feathersui.git"
},
"bugs": {
"url": "https://github.com/BowlerHatLLC/vscode-feathersui/issues"
},
"sponsor": {
"url": "https://github.com/sponsors/joshtynjala"
},
"main": "bin/extension.js",
"icon": "feathersui.png",
"scripts": {
"build": "vsce package",
"vscode:prepublish": "haxe build.hxml"
},
"keywords": [
"Feathers UI",
"Haxe",
"OpenFL"
],
"license": "MIT",
"engines": {
"vscode": "^1.36.0"
},
"activationEvents": [
"onCommand:feathersui.newProject"
],
"devDependencies": {
"@vscode/vsce": "~2.17.0"
},
"contributes": {
"commands": [
{
"command": "feathersui.newProject",
"title": "Create New Project",
"category": "Feathers UI"
}
]
}
}