-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.32 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
{
"name": "pulpscript-syntax",
"version": "0.3.4",
"publisher": "BlakeGearin",
"engines": {
"vscode": "^1.74.0"
},
"license": "GPL-3.0-only",
"displayName": "PulpScript Syntax",
"description": "Unofficial syntax support for PulpScript",
"categories": [
"Programming Languages"
],
"keywords": [
"pulp",
"pulpscript",
"playdate"
],
"galleryBanner": {
"color": "#ffc833",
"theme": "light"
},
"contributes": {
"languages": [
{
"id": "pulpscript",
"aliases": [
"pulpscript",
"pulp"
],
"extensions": [
".ps",
".pulp",
".pulpscript",
".ps.txt",
".pulp.txt",
".pulpscript.txt"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "pulpscript",
"scopeName": "text.pulpscript",
"path": "./syntaxes/pulpscript.tmLanguage.json"
}
]
},
"homepage": "https://github.com/blakegearin/pulpscript-syntax-vscode",
"bugs": {
"url": "https://github.com/blakegearin/pulpscript-syntax-vscode/issues",
"email": "blakegearin@pm.me"
},
"repository": {
"type": "git",
"url": "https://github.com/blakegearin/pulpscript-syntax-vscode.git"
},
"icon": "images/icon.png"
}