-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
151 lines (151 loc) · 4.45 KB
/
package.json
File metadata and controls
151 lines (151 loc) · 4.45 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "funkin-script-autocompleter",
"displayName": "Funkin Script AutoCompleter",
"description": "AutoCompleter for Friday Night Funkin` scripts",
"version": "2.0.1",
"icon": "images/icon.png",
"publisher": "Snirozu",
"private": true,
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Snirozu/Funkin-Script-AutoComplete"
},
"engines": {
"vscode": "^1.32.0"
},
"categories": [
"Snippets",
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"scripts": {
"build": "vsce package",
"publish": "vsce publish",
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint . --ext .ts,.tsx",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^16.11.7",
"@types/vscode": "^1.32.0",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"@vscode/vsce": "2.23.0",
"eslint": "^8.13.0",
"typescript": "^4.7.2"
},
"contributes": {
"configuration": {
"title": "Funkin Script AutoComplete",
"properties": {
"funkinVSCode.engine": {
"type": "string",
"default": "psych_latest",
"description": "Which Friday Night Funkin' Engine Lua Script API will this extension autocomplete.\nRequires Restart/Reload to take effect."
},
"funkinVSCode.data": {
"type": "string",
"default": "./data/",
"description": "Path to the local folder containing all of the API Data for the different engines."
},
"funkinVSCode.onlineDataURL": {
"type": "string",
"default": "https://codeberg.org/Snirozu/Funkin-Script-AutoComplete/raw/branch/master/data/",
"description": "URL path to the online folder which contains all of the API Data for the different engines."
},
"funkinVSCode.enableOnlyOnCertainScripts": {
"type": "boolean",
"default": false,
"description": "If checked, this extension will only work if a Lua script contains '---@funkinScript' comment"
},
"funkinVSCode.eventDocumentationGeneration": {
"type": "boolean",
"default": false,
"description": "If checked, after entering a event function, placeholder arguments are inserted on top of the function"
},
"funkinVSCode.functionArgumentsGeneration": {
"type": "boolean",
"default": false,
"description": "If checked, after entering a call function, default values of arguments are inserted inside of the function"
},
"funkinVSCode.offlineMode": {
"type": "boolean",
"default": false,
"description": "If checked, the completion data will no longer update with the online iteration"
},
"funkinVSCode.haxeEnabled": {
"type": "boolean",
"default": false,
"description": "If checked, haxe completion will be enabled for V-Slice (EXPERIMENTAL)\nRequires Restart/Reload to take effect."
},
"funkinVSCode.hscriptFileExtension": {
"type": "string",
"default": "hxc",
"description": "The associating file extension for Friday Night Funkin' scripts (EXPERIMENTAL)"
},
"funkinVSCode.haxelibs": {
"type": "array",
"default": [
"funkin https://github.com/FunkinCrew/Funkin main source/",
"funkin.vis https://github.com/FunkinCrew/funkVis",
"flixel",
"flixel-addons",
"flixel-text-input",
"flixel-ui",
"flxanimate",
"format",
"hamcrest",
"haxeui-core",
"haxeui-flixel",
"hscript https://github.com/HaxeFoundation/hscript",
"hxCodec",
"json2object",
"lime",
"openfl",
"polymod",
"thx.semver",
"thx.core",
"FlxPartialSound https://github.com/FunkinCrew/FlxPartialSound.git"
],
"description": "The Haxelibs you want to use\nRequires VSCode Restart to take effect! (EXPERIMENTAL)"
}
}
},
"languages": [
{
"id": "haxe",
"extensions": [
"hxc"
]
}
],
"commands": [
{
"command": "funkinVSCode.clearCache",
"title": "Clear Cache for Engine API Data (EXPERIMENTAL)"
},
{
"command": "funkinVSCode.updatelibs",
"title": "Update Haxelibs for Funkin Scripts (EXPERIMENTAL)"
},
{
"command": "funkinVSCode.updatelibsnofunkin",
"title": "Update Haxelibs for Funkin Scripts (Excluding Funkin Lib) (EXPERIMENTAL)"
},
{
"command": "funkinVSCode.updatefunkin",
"title": "Update Funkin API library"
}
]
},
"dependencies": {
"@types/needle": "^3.2.0",
"fast-xml-parser": "^4.5.3",
"needle": "^3.2.0"
}
}