56 lines
1.2 KiB
JSON
56 lines
1.2 KiB
JSON
{
|
|
"name": "cstmgames-fivem-snippets",
|
|
"displayName": "CSTMGames FiveM Snippets",
|
|
"description": "Snippets for FiveM",
|
|
"version": "1.0.4",
|
|
"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": "CSTMGames - KJ4LXC",
|
|
"categories": [
|
|
"Snippets"
|
|
],
|
|
"contributes": {
|
|
"snippets": [
|
|
{
|
|
"language": "lua",
|
|
"path": "./snippets/cstmcommonfunctions.code-snippets"
|
|
}
|
|
],
|
|
"commands": [
|
|
{
|
|
"command": "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": {
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^25.5.0",
|
|
"@types/vscode": "^1.110.0",
|
|
"vscode": "^1.1.37"
|
|
}
|
|
}
|