-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 2.65 KB
/
Copy pathpackage.json
File metadata and controls
127 lines (127 loc) · 2.65 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
{
"name": "sb4",
"displayName": "Sanny Builder 4",
"description": "Extension that replaces the editor Sanny builder 4",
"version": "0.7.0",
"publisher": "EOS",
"author": "EOS",
"license": "MIT",
"icon": "images/logo.jpg",
"galleryBanner": {
"color": "#100f11",
"theme": "dark"
},
"engines": {
"vscode": "^1.98.0"
},
"repository": {
"type": "git",
"url": "https://github.com/NoPressF/sb4-vscode"
},
"bugs": {
"url": "https://github.com/NoPressF/sb4-vscode/issues"
},
"categories": [
"Other",
"Formatters"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "sb4.selectFolder",
"title": "SB4: Select SB4 Folder"
},
{
"command": "sb4.compileScript",
"title": "SB4: Compile Script"
},
{
"command": "sb4.decompileScript",
"title": "SB4: Decompile Script"
},
{
"command": "sb4.searchOpcodes",
"title": "SB4: Search Opcodes"
}
],
"keybindings": [
{
"key": "ctrl+shift+b",
"command": "sb4.compileScript",
"when": "editorTextFocus"
},
{
"key": "ctrl+alt+2",
"command": "sb4.searchOpcodes",
"when": "editorTextFocus"
}
],
"languages": [
{
"id": "sb",
"aliases": [
"SB",
"sb"
],
"extensions": [],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "sb",
"scopeName": "source.sb4",
"path": "./syntax/sb4.tm-language.json",
"extensions": []
}
],
"snippets": [
{
"language": "sb",
"path": "./snippets/snippets.json"
}
],
"semanticTokenScopes": [
{
"language": "sb",
"scopes": {
"class": [
"class.sb"
],
"method": [
"method.sb"
]
}
}
]
},
"keywords": [
"sanny builder 4",
"sanny builder",
"scm",
"gta",
"cleo"
],
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p tsconfig.json && tsc-alias -p tsconfig.json",
"watch": "tsc -watch -p tsconfig.json"
},
"devDependencies": {
"@types/node": "^20.19.28",
"@types/vscode": "^1.108.1",
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.52.0",
"eslint": "^9.39.2",
"typescript": "^5.9.3"
},
"dependencies": {
"tsc-alias": "^1.8.16",
"iconv-lite": "^0.7.2",
"fast-xml-parser": "^5.3.3"
}
}