-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.88 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.88 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
{
"name": "fnf-dragon-engine-script-autocompleter",
"displayName": "FNF Dragon Engine Script AutoCompleter",
"description": "AutoCompleter for FNF-Dragon-Engine scripts",
"version": "1.0.25",
"icon": "images/icon.png",
"publisher": "DubEnderDragon",
"private": true,
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/DibyoExcel/Funkin-DGE-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": "FNF Dragon Engine Script AutoComplete",
"properties": {
"DGEVSCode.engine": {
"type": "string",
"default": "dge_latest",
"description": "Which Friday Night Funkin' Engine Lua Script API will this extension autocomplete.\nRequires Restart/Reload to take effect."
},
"DGEVSCode.data": {
"type": "string",
"default": "./data/",
"description": "Path to the local folder containing all of the API Data for the different engines."
},
"DGEVSCode.onlineDataURL": {
"type": "string",
"default": "https://github.com/DibyoExcel/Funkin-DGE-Script-AutoComplete/tree/main/data/",
"description": "URL path to the online folder which contains all of the API Data for the different engines."
},
"DGEVSCode.enableOnlyOnCertainScripts": {
"type": "boolean",
"default": false,
"description": "If checked, this extension will only work if a Lua script contains '---@funkinScript' comment"
},
"DGEVSCode.eventDocumentationGeneration": {
"type": "boolean",
"default": false,
"description": "If checked, after entering a event function, placeholder arguments are inserted on top of the function"
},
"DGEVSCode.functionArgumentsGeneration": {
"type": "boolean",
"default": false,
"description": "If checked, after entering a call function, default values of arguments are inserted inside of the function"
},
"DGEVSCode.offlineMode": {
"type": "boolean",
"default": false,
"description": "If checked, the completion data will no longer update with the online iteration"
}
}
},
"commands": [
{
"command": "DGEVSCode.clearCache",
"title": "Clear Cache for Engine API Data (EXPERIMENTAL)"
}
]
},
"dependencies": {
"@types/needle": "^3.2.0",
"fast-xml-parser": "^4.5.3",
"needle": "^3.2.0"
}
}