-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
133 lines (133 loc) · 3.64 KB
/
package.json
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
{
"name": "funkin-script-autocompleter",
"displayName": "Funkin Script AutoCompleter",
"description": "AutoCompleter for Friday Night Funkin` scripts",
"version": "2.0.0",
"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 folder containing all the descriptions 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.hscriptFileExtension": {
"type": "string",
"default": "hxc",
"description": "The associating file extension for Friday Night Funkin' scripts"
},
"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!"
}
}
},
"languages": [
{
"id": "haxe",
"extensions": [
"hxc"
]
}
],
"commands": [
{
"command": "funkinvscode.updatelibs",
"title": "Update Haxelibs for Funkin Scripts"
},
{
"command": "funkinvscode.updatelibsnofunkin",
"title": "Update Haxelibs for Funkin Scripts (Excluding Funkin Lib)"
},
{
"command": "funkinvscode.updatefunkin",
"title": "Update Funkin API library"
}
]
},
"dependencies": {
"@types/needle": "^3.2.0",
"fast-xml-parser": "^4.4.1",
"funkin-script-autocompleter": "file:",
"needle": "^3.2.0"
}
}