FiveM_Snippets/package.json

57 lines
1.3 KiB
JSON

{
"name": "cstmgames-fivem-snippets",
"displayName": "CSTMGames FiveM Snippets",
"description": "Snippets for FiveM",
"version": "1.0.10",
"engines": {
"vscode": "^1.110.0"
},
"main": "./out/extension.js",
"activationEvents": [
"onStartupFinished",
"onCommand:cstmgames.fivem_snippets.checkUpdates"
],
"icon": "pridelogo.png",
"repository": {
"type": "git",
"url": "https://git.cstmgames.dev/CSTMGames/FiveM_Snippets.git"
},
"publisher": "kj4lxc",
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "lua",
"path": "./snippets/cstmcommonfunctions.code-snippets"
}
],
"commands": [
{
"command": "kj4lxc.cstmgames.fivem_snippets.checkUpdates",
"title": "Check for Snippet Updates"
}
],
"configuration": {
"title": "Snippets Updater",
"properties": {
"cstmgames.fivem_snippets.autoUpdate": {
"type": "boolean",
"default": true,
"description": "Automatically install updates"
}
}
}
},
"dependencies": {
"node-fetch": "^3.3.2",
"typescript": "^5.9.3"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@types/vscode": "^1.110.0",
"vscode": "^1.1.37"
}
}