Files
VSCode_Project_Roadmap/package.json
2025-06-22 20:45:37 -05:00

87 lines
2.4 KiB
JSON

{
"name": "vscode-project-roadmap",
"displayName": "VSCode Project Roadmap",
"publisher": "solo-web-works",
"description": "Extension to track a project by phase using a Markdown checklist file.",
"version": "0.0.1",
"engines": {
"vscode": "^1.101.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished",
"workspaceContains:Development Checklist.md"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "roadmapChecklist.openTab",
"title": "Roadmap: Open Tab"
}
],
"configuration": [
{
"type": "string",
"default": "Development Checklist.md",
"description": "Filename of the markdown checklist to use for the roadmap view.",
"scope": "workspace",
"properties": {
"roadmapChecklist.filename": {
"type": "string",
"default": "Development Checklist.md",
"description": "The relative path to the markdown file used for the roadmap checklist."
}
}
}
],
"viewsContainers": {
"activitybar": [
{
"id": "roadmapSidebar",
"title": "Roadmap",
"icon": "media/roadmap.svg"
}
]
},
"views": {
"roadmapSidebar": [
{
"id": "roadmapChecklist",
"name": "Checklist",
"icon": "media/roadmap.svg"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "npm run check-types && npm run lint && node esbuild.js",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"package": "npm run check-types && npm run lint && node esbuild.js --production",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"check-types": "tsc --noEmit",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@types/vscode": "^1.101.0",
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"eslint": "^9.25.1",
"esbuild": "^0.25.3",
"npm-run-all": "^4.1.5",
"typescript": "^5.8.3",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.5.2"
}
}