-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
166 lines (166 loc) · 4.66 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
{
"name": "hollywood-mal",
"displayName": "Hollywood MAL (hw4vsc)",
"description": "Adds coding support for Hollywood MAL (Cross-Platform Multimedia Application Layer)",
"version": "10.0.1",
"engines": {
"vscode": "^1.75.0"
},
"publisher": "michaeljurisch",
"author": {
"name": "Michael Jurisch"
},
"maintainers": [
"Michael Jurisch"
],
"license": "SEE LICENSE IN LICENSE",
"categories": [
"Programming Languages"
],
"keywords": [
"Hollywood",
"Amiga",
"Multimedia",
"Games"
],
"main": "./out/extension",
"activationEvents": [],
"repository": {
"type": "git",
"url": "https://github.com/JohnArcher/vscode-hollywood-mal"
},
"bugs": {
"url": "https://github.com/JohnArcher/vscode-hollywood-mal/issues"
},
"homepage": "https://github.com/JohnArcher/vscode-hollywood-mal/blob/master/README.md",
"icon": "icon.png",
"contributes": {
"themes": [
{
"label": "Hollywood (Light)",
"uiTheme": "vs",
"path": "./themes/hollywood-light-color-theme.json"
},
{
"label": "Hollywood (Dark)",
"uiTheme": "vs-dark",
"path": "./themes/hollywood-dark-color-theme.json"
}
],
"languages": [
{
"id": "hollywood",
"aliases": [
"Hollywood",
"hollywood"
],
"extensions": [
".hws"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "hollywood",
"scopeName": "source.hollywood",
"path": "./syntaxes/hollywood.tmLanguage.json"
}
],
"snippets": [
{
"language": "hollywood",
"path": "./snippets/hollywood.json"
}
],
"configuration": {
"type": "object",
"title": "Hollywood",
"properties": {
"hollywood.exePath": {
"type": "string",
"default": null,
"markdownDescription": "Path and filename of the Hollywood executable, e.g. `\"C:\\Program Files\\Hollywood\\Hollywood_Console.exe\"` (Windows). **Attention**: If the path contains spaces you have to enclose it in double quotes."
},
"hollywood.outputExeType": {
"type": "string",
"default": "win32",
"markdownDescription": "The output format that the Hollywood compiler should create. In order to define multiple targets, e.g. `win64|classic|morphos`, you have to create a separate Task in tasks.json (see provided example file).",
"enum": [
"amigaos4",
"android",
"aros",
"classic",
"classic881",
"ios",
"linux",
"linux64",
"linuxarm",
"linuxppc",
"macos",
"macos86",
"macos64",
"morphos",
"warpos",
"win32",
"win64",
"win32console",
"win64console",
"applet"
],
"enumDescriptions": [
"AmigaOS 4 executable (PowerPC)",
"Hollywood applet which has the platform-specific constants for Android set (see Hollywood documentation)",
"AROS executable (x86)",
"AmigaOS 3.x executable (68020+)",
"AmigaOS 3.x executable (68020+) with math co-processor (68881/2 or 68040/68060)",
"Hollywood applet which has the platform-specific constants for iOS set (see Hollywood documentation).",
"Linux executable (x86)",
"Linux executable (x64)",
"Linux executable (arm)",
"Linux executable (PowerPC)",
"Mac OS X application bundle (PowerPC)",
"Mac OS X application bundle (x86)",
"Mac OS X application bundle (x64)",
"MorphOS executable (PowerPC)",
"WarpOS mixed-binary executable (68040/PowerPC)",
"Windows executable (x86)",
"Windows executable (x64)",
"Windows executable (x86) that runs in console mode",
"Windows executable (x64) that runs in console mode",
"Universal Hollywood applet which can be started on any system with a Hollywood Player"
]
},
"hollywood.mainFile": {
"type": "string",
"default": null,
"markdownDescription": "The project's main Hollywood file that is executed or compiled, e.g. `main.hws`. This has to be a workspace setting!"
},
"hollywood.mainOutputFile": {
"type": "string",
"default": null,
"markdownDescription": "The name of the to be compiled program, e.g. `main` or `MyGame`. This has to be a workspace setting!"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/vscode": "^1.75.0",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"typescript": "^5.3.3"
},
"__metadata": {
"id": "100d38a2-22d4-4e27-9704-978ccb6e2968",
"publisherDisplayName": "Michael Jurisch",
"publisherId": "957943a2-e91f-4833-b90c-1aab77dd5185",
"isPreReleaseVersion": false
}
}