-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.49 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 2.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "fivemgen",
"displayName": "FiveM Basic Resource Generator",
"description": "Comprehensive resource generator for FiveM with multi-language support",
"version": "1.3.6",
"icon": "logo/fivem.png",
"engines": {
"vscode": "^1.96.0"
},
"publisher": "NoCapScripts",
"author": {
"name": "NoCapScripts",
"email": "pals.sten@gmail.com",
"url": "https://github.com/nocapscripts"
},
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/nocapscripts/fivem-builder"
},
"bugs": {
"url": "https://github.com/nocapscripts/fivem-builder/issues"
},
"homepage": "https://github.com/nocapscripts/fivem-builder#readme",
"categories": [
"Snippets",
"Other"
],
"keywords": [
"fivem",
"cfxre",
"cfx",
"resource",
"generator",
"gtav",
"lua",
"javascript",
"typescript",
"csharp"
],
"activationEvents": [
"onLanguage:lua",
"onLanguage:javascript",
"onLanguage:typescript",
"onLanguage:json",
"onLanguage:plaintext"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "fivembuilder.createResource",
"title": "Generate FiveM Resource",
"category": "FiveM"
},
{
"command": "fivembuilder.createGUIResource",
"title": "Generate FiveM Resource with Web",
"category": "FiveM"
},
{
"command": "fivembuilder.generateAlpine",
"title": "Generate Alpine Resource",
"category": "FiveM"
},
{
"command": "fivembuilder.generateVueTemplate",
"title": "Generate Vue Template Resource",
"category": "FiveM"
}
],
"snippets": [
{
"language": "lua",
"path": "./snippets/lua.json"
},
{
"language": "javascript",
"path": "./snippets/javascript.json"
},
{
"language": "typescript",
"path": "./snippets/typescript.json"
},
{
"language": "csharp",
"path": "./snippets/csharp.json"
}
]
},
"scripts": {
"lint": "eslint .",
"test": "vscode-test",
"package": "vsce package",
"publish": "vsce publish"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"@types/vscode": "^1.96.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.5.2",
"eslint": "^9.25.1",
"@vscode/vsce": "^3.3.2"
},
"dependencies": {
"simple-git": "^3.28.0"
}
}