Files
vscode-front-matter/package.json
2019-08-23 17:46:23 +02:00

72 lines
1.5 KiB
JSON

{
"name": "vscode-hugo-helpers",
"displayName": "vscode-hugo-helpers",
"description": "",
"version": "0.0.1",
"publisher": "eliostruyf",
"engines": {
"vscode": "^1.37.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:hugo.insertTags",
"onCommand:hugo.insertCategories",
"onCommand:hugo.createTag",
"onCommand:hugo.createCategory"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"title": "Hugo: Helpers Configuration",
"properties": {
"hugo.taxonomy.tags": {
"type": "array",
"description": "Specifies the tags which can be used for Hugo"
},
"hugo.taxonomy.categories": {
"type": "array",
"description": "Specifies the categories which can be used for Hugo"
}
}
},
"commands": [
{
"command": "hugo.insertTags",
"title": "Hugo: Insert tags"
},
{
"command": "hugo.insertCategories",
"title": "Hugo: Insert categories"
},
{
"command": "hugo.createTag",
"title": "Hugo: Create tag"
},
{
"command": "hugo.createCategory",
"title": "Hugo: Create category"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.6",
"@types/node": "^10.12.21",
"@types/vscode": "^1.37.0",
"glob": "^7.1.4",
"mocha": "^6.1.4",
"typescript": "^3.3.1",
"tslint": "^5.12.1",
"vscode-test": "^1.0.2"
}
}