2021-10-01 13:31:17 +03:00
|
|
|
{
|
|
|
|
"name": "psdocs-vscode",
|
2021-10-01 14:33:40 +03:00
|
|
|
"displayName": "PSDocs.Azure (Preview)",
|
2021-10-01 15:02:24 +03:00
|
|
|
"publisher": "vicperdana",
|
2021-10-01 13:31:17 +03:00
|
|
|
"description": "Generate Markdown from ARM templates using PSDocs.Azure",
|
|
|
|
"author": {
|
|
|
|
"name": "Vic Perdana"
|
|
|
|
},
|
|
|
|
"version": "0.0.1",
|
|
|
|
"engines": {
|
|
|
|
"vscode": "^1.58.0"
|
|
|
|
},
|
|
|
|
"license": "SEE LICENSE IN LICENSE",
|
|
|
|
"categories": [
|
|
|
|
"Programming Languages",
|
|
|
|
"Snippets"
|
|
|
|
],
|
|
|
|
"keywords": [
|
|
|
|
"Azure Template",
|
|
|
|
"Azure",
|
|
|
|
"ARM",
|
|
|
|
"Resource Manager",
|
|
|
|
"PSDocs.Azure"
|
|
|
|
],
|
|
|
|
"galleryBanner": {
|
|
|
|
"color": "#0072c6",
|
|
|
|
"theme": "dark"
|
|
|
|
},
|
|
|
|
"icon": "images/psdocs-icon.png",
|
2021-10-01 14:54:30 +03:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/Microsoft/PSDocs-vscode.git"
|
|
|
|
},
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/Microsoft/PSDocs-vscode/issues"
|
|
|
|
},
|
2021-10-01 13:31:17 +03:00
|
|
|
"activationEvents": [
|
2021-10-01 15:28:31 +03:00
|
|
|
"onCommand:vicperdana.psdocs-vscode"
|
2021-10-01 13:31:17 +03:00
|
|
|
],
|
|
|
|
"private": true,
|
|
|
|
"preview": true,
|
|
|
|
"main": "./out/extension.js",
|
|
|
|
"contributes": {
|
|
|
|
"commands": [
|
|
|
|
{
|
2021-10-01 15:28:31 +03:00
|
|
|
"command": "vicperdana.psdocs-vscode",
|
2021-10-01 13:31:17 +03:00
|
|
|
"title": "PSDocs.Azure: Generate Markdown"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"snippets": [
|
|
|
|
{
|
|
|
|
"language": "arm-template",
|
|
|
|
"path": "./snippets/arm.json"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"scripts": {
|
2021-10-01 15:02:24 +03:00
|
|
|
"vscode:prepublish": "npm run -S esbuild-base -- --minify",
|
2021-10-01 13:31:17 +03:00
|
|
|
"compile": "tsc -p ./",
|
|
|
|
"watch": "tsc -watch -p ./",
|
2021-10-01 14:56:44 +03:00
|
|
|
"pretest": "npm run compile",
|
2021-10-01 13:31:17 +03:00
|
|
|
"lint": "eslint src --ext ts",
|
2021-10-01 14:56:44 +03:00
|
|
|
"test": "node ./out/test/runTest.js",
|
|
|
|
"pack": "vsce package",
|
2021-10-01 15:02:24 +03:00
|
|
|
"publish": "vsce publish",
|
|
|
|
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/dist/extension.js --external:vscode --format=cjs --platform=node",
|
|
|
|
"esbuild": "npm run -S esbuild-base -- --sourcemap",
|
|
|
|
"esbuild-watch": "npm run -S esbuild-base -- --sourcemap --watch"
|
2021-10-01 13:31:17 +03:00
|
|
|
},
|
|
|
|
"extensionDependencies": [
|
|
|
|
"vscode.powershell",
|
|
|
|
"ms-vscode.powershell",
|
|
|
|
"msazurermtools.azurerm-vscode-tools"
|
|
|
|
],
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/vscode": "^1.58.0",
|
|
|
|
"@types/glob": "^7.1.3",
|
|
|
|
"@types/mocha": "^8.2.2",
|
|
|
|
"@types/node": "14.x",
|
|
|
|
"eslint": "^7.27.0",
|
2021-10-01 15:05:13 +03:00
|
|
|
"esbuild": "^0.12.12",
|
2021-10-01 13:31:17 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.26.0",
|
|
|
|
"@typescript-eslint/parser": "^4.26.0",
|
|
|
|
"glob": "^7.1.7",
|
|
|
|
"mocha": "^8.4.0",
|
|
|
|
"typescript": "^4.3.2",
|
2021-10-01 14:54:30 +03:00
|
|
|
"vsce": "^1.95.0",
|
2021-10-01 13:31:17 +03:00
|
|
|
"vscode-test": "^1.5.2"
|
|
|
|
}
|
|
|
|
}
|