chore: add package-lock.json with project dependencies

This commit is contained in:
2026-04-24 09:15:12 -04:00
parent 40af76b869
commit 0d1aa737ec
2 changed files with 4018 additions and 0 deletions
+47
View File
@@ -0,0 +1,47 @@
{
"name": "octo-theme",
"displayName": "Octo Theme",
"description": "Thème VSCode épuré disponible en variante claire et sombre.",
"version": "1.0.0",
"publisher": "hykocx",
"author": "Hyko",
"license": "MIT",
"icon": "images/icon.png",
"repository": {
"type": "git",
"url": "https://git.hyko.cx/hykocx/octo-vscode"
},
"keywords": [
"theme",
"color theme",
"dark",
"light",
"octo"
],
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Octo Light",
"uiTheme": "vs",
"path": "./themes/octo-light-color-theme.json"
},
{
"label": "Octo Dark",
"uiTheme": "vs-dark",
"path": "./themes/octo-dark-color-theme.json"
}
]
},
"scripts": {
"package": "vsce package --baseContentUrl https://git.hyko.cx/hykocx/octo-vscode/raw/branch/main --baseImagesUrl https://git.hyko.cx/hykocx/octo-vscode/raw/branch/main"
},
"devDependencies": {
"@vscode/vsce": "^3.0.0"
}
}