mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-05-02 11:32:27 +02:00
91 lines
2.1 KiB
JSON
91 lines
2.1 KiB
JSON
{
|
|
"name": "vscode-front-matter",
|
|
"displayName": "vscode-front-matter",
|
|
"description": "Simplifies front matter configuration for your articles/posts/...",
|
|
"version": "0.0.1",
|
|
"publisher": "eliostruyf",
|
|
"engines": {
|
|
"vscode": "^1.37.0"
|
|
},
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"keywords": [
|
|
"Front Matter",
|
|
"Hugo",
|
|
"Jekyll",
|
|
"Taxonomy"
|
|
],
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/estruyf/vscode-front-matter"
|
|
},
|
|
"activationEvents": [
|
|
"onCommand:frontMatter.insertTags",
|
|
"onCommand:frontMatter.insertCategories",
|
|
"onCommand:frontMatter.createTag",
|
|
"onCommand:frontMatter.createCategory",
|
|
"onCommand:frontMatter.exportTaxonomy"
|
|
],
|
|
"main": "./out/extension.js",
|
|
"contributes": {
|
|
"configuration": {
|
|
"title": "Front Matter: Configuration",
|
|
"properties": {
|
|
"frontMatter.taxonomy.tags": {
|
|
"type": "array",
|
|
"description": "Specifies the tags which can be used in the Front Matter"
|
|
},
|
|
"frontMatter.taxonomy.categories": {
|
|
"type": "array",
|
|
"description": "Specifies the categories which can be used in the Front Matter"
|
|
}
|
|
}
|
|
},
|
|
"commands": [
|
|
{
|
|
"command": "frontMatter.insertTags",
|
|
"title": "Front Matter: Insert tags"
|
|
},
|
|
{
|
|
"command": "frontMatter.insertCategories",
|
|
"title": "Front Matter: Insert categories"
|
|
},
|
|
{
|
|
"command": "frontMatter.createTag",
|
|
"title": "Front Matter: Create tag"
|
|
},
|
|
{
|
|
"command": "frontMatter.createCategory",
|
|
"title": "Front Matter: Create category"
|
|
},
|
|
{
|
|
"command": "frontMatter.exportTaxonomy",
|
|
"title": "Front Matter: Export all tags & categories to your settings"
|
|
}
|
|
]
|
|
},
|
|
"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"
|
|
},
|
|
"dependencies": {
|
|
"gray-matter": "4.0.2"
|
|
}
|
|
}
|