-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (91 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (91 loc) · 2.22 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
{
"name": "axs",
"displayName": "AxScript",
"description": "Language support for AxScript (AdaptixC2 Scripting Language)",
"version": "0.1.1",
"publisher": "5P34R",
"icon": "images/axs-icon.svg",
"repository": {
"type": "git",
"url": "https://github.com/5P34R/axs-extension.git"
},
"keywords": [
"axs",
"adaptix",
"adaptixc2",
"scripting",
"javascript",
"syntax highlighting",
"autocompletion"
],
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Programming Languages"
],
"main": "./out/extension.js",
"contributes": {
"languages": [{
"id": "axs",
"aliases": ["AxScript", "axs", "AXS"],
"extensions": [".axs"],
"configuration": "./language-configuration.json",
"firstLine": "^#!/.*\\baxs[0-9.-]*\\b"
}],
"grammars": [{
"language": "axs",
"scopeName": "source.js.axs",
"path": "./syntaxes/axs.tmLanguage.json",
"embeddedLanguages": {
"source.js": "javascript"
}
}],
"iconThemes": [
{
"id": "axs-icons",
"label": "AXS Icons",
"path": "./icons/axs-icons.json"
}
],
"configurationDefaults": {
"[axs]": {
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": true
},
"editor.suggest.showKeywords": true,
"editor.suggest.showSnippets": true,
"editor.suggest.showWords": true,
"editor.suggest.showVariables": true,
"editor.suggest.showClasses": true,
"editor.suggest.showFunctions": true,
"editor.suggest.showConstants": true,
"editor.suggest.showMethods": true,
"editor.suggest.showProperties": true,
"editor.wordBasedSuggestions": true
}
},
"snippets": [
{
"language": "axs",
"path": "./snippets/axs.json"
}
]
},
"activationEvents": [
"onLanguage:axs"
],
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/vscode": "^1.74.0",
"@types/node": "20.x",
"typescript": "^5.4.5"
}
}