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"
|
|
|
|
},
|
2024-05-27 05:35:45 +03:00
|
|
|
"version": "0.3.3",
|
2021-10-01 13:31:17 +03:00
|
|
|
"engines": {
|
2024-05-27 05:35:45 +03:00
|
|
|
"vscode": "^1.89.0"
|
2021-10-01 13:31:17 +03:00
|
|
|
},
|
|
|
|
"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:53:05 +03:00
|
|
|
"onCommand:vicperdana.psdocs-vscode-preview"
|
2021-10-01 13:31:17 +03:00
|
|
|
],
|
|
|
|
"private": true,
|
|
|
|
"preview": true,
|
|
|
|
"main": "./out/extension.js",
|
|
|
|
"contributes": {
|
|
|
|
"commands": [
|
|
|
|
{
|
2021-10-01 15:53:05 +03:00
|
|
|
"command": "vicperdana.psdocs-vscode-preview",
|
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",
|
2021-10-01 16:11:20 +03:00
|
|
|
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node",
|
2021-10-01 15:02:24 +03:00
|
|
|
"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": {
|
2024-01-16 10:18:15 +03:00
|
|
|
"@types/glob": "^8.1.0",
|
|
|
|
"@types/mocha": "^10.0.6",
|
2024-06-06 02:46:44 +03:00
|
|
|
"@types/node": "^20.14.2",
|
2024-05-27 05:35:45 +03:00
|
|
|
"@types/vscode": "^1.89.0",
|
2024-06-12 15:16:19 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "^7.13.0",
|
2024-06-12 15:04:28 +03:00
|
|
|
"@typescript-eslint/parser": "^7.13.0",
|
2024-05-27 05:35:45 +03:00
|
|
|
"esbuild": "^0.21.4",
|
2024-01-17 14:51:53 +03:00
|
|
|
"eslint": "^8.56.0",
|
2024-05-27 05:35:45 +03:00
|
|
|
"glob": "^10.4.1",
|
|
|
|
"mocha": "^10.4.0",
|
|
|
|
"typescript": "^5.4.5",
|
2022-02-09 11:20:05 +03:00
|
|
|
"vscode-test": "^1.6.1"
|
2024-01-17 14:51:53 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-06-05 16:43:29 +03:00
|
|
|
"@vscode/vsce": "^2.27.0"
|
2021-10-01 13:31:17 +03:00
|
|
|
}
|
|
|
|
}
|