-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.73 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 1.73 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
{
"name": "gfa-basic-syntax-enhanced",
"displayName": "GFA BASIC 3.6 Enhanced Syntax Highlighting",
"description": "Complete GFA-BASIC 3.6 language support for Visual Studio Code with enhanced syntax highlighting, comprehensive snippets, and IntelliSense for Atari ST development",
"version": "2.0.0",
"publisher": "Hylst",
"license": "MIT",
"icon": "images/GFA_BASIC_3_FOR_ATARI_DEV_VSCODE_EXT_ICO.png",
"repository": {
"type": "git",
"url": "https://github.com/Hylst/Gfa_basic_3_Vscode_Ext"
},
"homepage": "https://github.com/Hylst/Gfa_basic_3_Vscode_Ext",
"bugs": {
"url": "https://github.com/Hylst/Gfa_basic_3_Vscode_Ext/issues"
},
"categories": [
"Programming Languages"
],
"keywords": [
"gfa-basic",
"gfa",
"basic",
"atari",
"atari-st",
"syntax",
"highlighting",
"language",
"retro",
"vintage",
"programming",
"bios",
"xbios",
"gemdos",
"aes",
"vdi",
"graphics",
"sound",
"matrix",
"snippets",
"intellisense"
],
"engines": {
"vscode": "^1.75.0"
},
"contributes": {
"languages": [
{
"id": "gfabasic",
"aliases": [
"GFA BASIC",
"gfabasic",
"GFA BASIC 3.6"
],
"extensions": [".lst"], "configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "gfabasic",
"scopeName": "source.gfabasic",
"path": "./syntaxes/gfabasic.tmLanguage.json"
}
],
"snippets": [
{
"language": "gfabasic",
"path": "./snippets/gfabasic.json"
}
]
},
"activationEvents": [
"onLanguage:gfabasic"
],
"main": "./extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "echo 'No compilation needed'",
"watch": "echo 'No watch needed'"
},
"devDependencies": {
"@types/vscode": "^1.75.0"
}
}