MapCompleteVScode/package.json
2025-02-20 23:57:52 +01:00

72 lines
No EOL
1.7 KiB
JSON

{
"name": "mapcompletevscode",
"displayName": "MapComplete VScode",
"version": "1.2.1",
"publisher": "robin-van-der-linde",
"author": {
"name": "Robin van der Linde",
"email": "r@rlin.eu",
"url": "https://rlin.eu"
},
"icon": "images/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/RobinLinde/MapCompleteVSCode.git"
},
"description": "Extension providing autocompletion and definition supoort for MapComplete themes and layers.",
"keywords": [
"mapcomplete",
"vscode",
"extension",
"osm"
],
"private": true,
"license": "MIT",
"engines": {
"vscode": "^1.73.0"
},
"categories": [
"Other"
],
"activationEvents": [
"workspaceContains:**/assets/svg/mapcomplete_logo.svg"
],
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@stylistic/eslint-plugin": "^2.13.0",
"@types/node": "^22",
"@types/vscode": "^1.73.0",
"eslint": "^9.18.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
},
"dependencies": {
"jsonc-parser": "^3.3.1"
},
"contributes": {
"configuration": {
"type": "object",
"title": "MapComplete",
"properties": {
"mapcomplete.caching": {
"type": "boolean",
"default": true,
"description": "Enable caching of MapComplete themes and layers."
}
}
},
"commands": [
{
"command": "mapcomplete.refresh",
"title": "MapComplete: Refresh cache for themes, layers, filters and tagRenderings"
}
]
}
}