-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.53 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
{
"name": "cfxlua-openvsx",
"displayName": "Cfx Lua IntelliSense — FiveM & RedM",
"description": "Community-maintained fork of the archived CfxLua extension. Adds Lua IntelliSense, FiveM/RedM native definitions, and runtime globals for VSCode and OpenVSX Extension Package.",
"version": "2.0.2",
"publisher": "SlantingStds",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/SlantingStds/cfxlua-openvsx"
},
"engines": {
"vscode": "^1.82.0"
},
"categories": [
"Linters",
"Programming Languages"
],
"contributes": {
"commands": [
{
"command": "cfxlua.game.rdr3",
"title": "Use RDR3 natives",
"category": "CfxLua"
},
{
"command": "cfxlua.game.gtav",
"title": "Use GTAV natives",
"category": "CfxLua"
},
{
"command": "cfxlua.updateNatives",
"title": "Update natives",
"category": "CfxLua"
}
],
"configuration": {
"title": "CfxLua",
"properties": {
"cfxlua.game": {
"type": "string",
"default": "gtav",
"enum": [
"gtav",
"rdr3"
],
"enumDescriptions": [
"FiveM (GTA V) natives",
"RedM (RDR3) natives"
],
"description": "Which game's native definitions to load alongside the shared CFX natives."
}
}
}
},
"keywords": [
"Lua",
"FiveM",
"RedM",
"IntelliSense"
],
"icon": "logo.png",
"activationEvents": [
"onLanguage:lua"
],
"main": "./dist/extension.js",
"scripts": {
"vscode:prepublish": "yarn run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"typecheck": "tsc --noEmit",
"lint": "biome check src scripts",
"format": "biome format --write src scripts",
"test": "vitest run",
"generate": "tsx scripts/generate.ts",
"build-vsix": "npx --yes @vscode/vsce@3 package --no-dependencies"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.13.11",
"@types/vscode": "^1.82.0",
"ts-loader": "^9.5.1",
"tsx": "^4.19.2",
"typescript": "^5.5.4",
"vitest": "^3.0.5",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"extensionDependencies": [
"sumneko.lua"
],
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}