-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
84 lines (84 loc) · 2.25 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
{
"name": "vscode-hugo",
"displayName": "Hugo Helper",
"description": "Helper for Hugo static site generator",
"version": "0.24.0",
"publisher": "rusnasonov",
"homepage": "https://github.com/rusnasonov/vscode-hugo/blob/master/README.md",
"icon": "icon.png",
"license": "SEE LICENSE IN LICENSE",
"engines": {
"vscode": "^1.43.0"
},
"categories": [
"Other"
],
"keywords": [
"Hugo",
"Helper",
"Static site generator"
],
"author": "Ruslan Nasonov - rusnasonov.com",
"repository": "https://github.com/rusnasonov/vscode-hugo.git",
"bugs": {
"url": "https://github.com/rusnasonov/vscode-hugo/issues"
},
"activationEvents": [
"*"
],
"main": "./out/main",
"contributes": {
"commands": [
{
"command": "hugo.version",
"title": "Hugo: version"
},
{
"command": "hugo.createContent",
"title": "Hugo: create content"
},
{
"command": "hugo.remoteVersion",
"title": "Hugo: remote version"
},
{
"command": "hugo.fromarchetype",
"title": "Hugo: create content from archetype"
}
],
"taskDefinitions": [
{
"type": "hugo",
"required": [
"task"
],
"properties": {
"task": {
"type": "string",
"description": "The Hugo task"
}
}
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "tslint --project ./",
"package-version": "echo $npm_package_version"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.6",
"@types/node": "^11.13.7",
"@types/vscode": "^1.43.0",
"tslint": "^5.11.0",
"typescript": "^3.4.5",
"vsce": "^1.75.0",
"vscode-test": "^1.3.0"
},
"dependencies": {
"axios": "^0.19.2"
}
}