-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 2.92 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
{
"name": "insert-molang-file",
"displayName": "Insert Molang File [Minecraft Bedrock]",
"description": "This extension lets you use '.molang' files when working on larger scripts and then easily insert them as a single-line string into Minecraft Bedrock add-on files.",
"version": "2.3.0",
"icon": "assets/icon.png",
"license": "SEE LICENSE IN LICENSE.md",
"publisher": "IceCraftStudio",
"homepage": "https://github.com/IceCraft-Studio/Insert-Molang-File-VSC-Ext",
"author": {
"name": "IceCraft Studio",
"url": "https://www.icecraftstudio.repl.co/"
},
"categories": [
"Programming Languages",
"Other"
],
"keywords": [
"molang",
"minecraft",
"minecraft-json",
"minecraft-molang",
"insert-file"
],
"activationEvents": [
"onLanguage:json",
"onLanguage:jsonc"
],
"main": "./src/extension.js",
"contributes": {
"commands": [
{
"command": "molang-insert.openUi",
"title": "Insert Molang File",
"category": "Molang Insert"
}
],
"menus": {
"editor/context": [
{
"when": "editorLangId == json || editorLangId == jsonc",
"command": "molang-insert.openUi",
"group": "MolangInsertContext"
}
],
"commandPalette": [
{
"when": "editorLangId == json || editorLangId == jsonc",
"command": "molang-insert.openUi",
"group": "MolangInsertContext"
}
]
},
"configuration": [
{
"title": "Insert Molang File",
"properties": {
"molang-insert.typing.prefix": {
"scope": "resource",
"minLength": 0,
"maxLength": 3,
"type": "string",
"default": "",
"markdownDescription": "Sepecifies prefix for a string to use before Molang file name in such format: `{prefix}{fileName}.molang`, leave blank for no prefix to be required in the string. *Only applies when `#molang-insert.typing.enabled#` is set to `true`.*"
},
"molang-insert.typing.enabled": {
"scope": "resource",
"type": "boolean",
"default": true,
"markdownDescription": "If set to `true`, you can insert Molang files by typing their name in specific context with optional prefix defined in `#molang-insert.typing.prefix#`. *Reload Visual Studio Code for changes to take effect.*"
},
"molang-insert.fileSorting": {
"scope": "resource",
"default": "dateModified",
"enum": [
"dateModified",
"alphabetical"
],
"enumDescriptions": [
"Sorts the files by their date modified.",
"Sorts the files by their name alphabetically."
],
"description": "Sets the order of files in the Insert Molang File menu."
}
}
}
]
},
"engines": {
"vscode": "^1.76.0"
},
"devDependencies": {
"@types/vscode": "^1.76.0"
},
"maintainers": [
{
"name": "PavelDobCZ23",
"url": "https://github.com/PavelDobCZ23"
}
],
"repository": {
"url": "https://github.com/IceCraft-Studio/Insert-Molang-File-VSC-Ext",
"type": "git"
},
"extensionKind": [
"workspace"
]
}