Files
VSCode_Project_Roadmap/package.json
2025-06-22 10:51:16 -05:00

72 lines
1.9 KiB
JSON

{
"name": "vscode-project-roadmap",
"displayName": "VSCode Project Roadmap",
"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",
"onView:roadmapChecklist",
"workspaceContains:Development Checklist.md"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "vscode-project-roadmap.helloWorld",
"title": "Hello World"
}
],
"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"
}
}