-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
160 lines (160 loc) · 4.39 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
{
"name": "befunge",
"displayName": "Befunge",
"description": "Adds syntax highlighting and alignment guides for Befunge-93 and Befunge-98 programming languages",
"author": {
"name": "Karl Goffin"
},
"version": "1.2.4",
"publisher": "kagof",
"icon": "assets/icon.png",
"galleryBanner": {
"color": "#1c232d",
"theme": "dark"
},
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
"url": "https://github.com/kagof/VSCode-Befunge"
},
"main": "./out/extension",
"homepage": "https://github.com/kagof/VSCode-Befunge",
"engines": {
"vscode": "^1.19.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"befunge",
"esoteric",
"befunge-93",
"befunge-98",
"funge-98"
],
"bugs": {
"url": "https://github.com/kagof/VSCode-Befunge/issues"
},
"activationEvents": [
"*"
],
"contributes": {
"languages": [
{
"id": "befunge",
"aliases": [
"Befunge",
"befunge",
"Befunge-93"
],
"extensions": [
".bf",
".befunge",
".b93"
],
"configuration": "./befunge-configuration.json"
},
{
"id": "befunge98",
"aliases": [
"Befunge98",
"befunge98",
"Befunge-98",
"funge-98"
],
"extensions": [
".b98"
],
"configuration": "./befunge-configuration.json"
}
],
"grammars": [
{
"language": "befunge",
"scopeName": "source.befunge.93",
"path": "./syntaxes/befunge-93.tmLanguage.json"
},
{
"language": "befunge98",
"scopeName": "source.befunge.98",
"path": "./syntaxes/befunge-98.tmLanguage.json"
}
],
"configuration": {
"type": "object",
"title": "Befunge Configuration",
"properties": {
"befunge.guides.enabled": {
"type": "boolean",
"default": true,
"description": "Enable the Befunge guides coming from arrow characters."
},
"befunge.guides.wrap": {
"type": "boolean",
"default": false,
"description": "Enable the Befunge guides coming from arrow characters to wrap to the other side when the edge of the code torus is hit."
},
"befunge.guides.color.dark": {
"type": "string",
"format": "color-hex",
"pattern": "^#[0-9a-f]{6}$",
"default": "#3c3c3c",
"description": "The Befunge guide line color to use for a dark theme. Currently restricted to 6 digit hex as other values may cause issues."
},
"befunge.guides.color.light": {
"type": "string",
"format": "color-hex",
"pattern": "^#[0-9a-f]{6}$",
"default": "#dcdcdc",
"description": "The Befunge guide line color to use for a light theme. Currently restricted to 6 digit hex as other values may cause issues."
}
}
},
"configurationDefaults": {
"[befunge]": {
"editor.renderIndentGuides": false,
"editor.renderLineHighlight": "none",
"files.trimTrailingWhitespace": false,
"editor.autoIndent": false,
"editor.acceptSuggestionOnEnter": "off",
"editor.quickSuggestions": {
"other": false,
"comments": false,
"strings": false
}
},
"[befunge98]": {
"editor.renderIndentGuides": false,
"editor.renderLineHighlight": "none",
"files.trimTrailingWhitespace": false,
"editor.autoIndent": false,
"editor.acceptSuggestionOnEnter": "off",
"editor.quickSuggestions": {
"other": false,
"comments": false,
"strings": false
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"lint": "node ./node_modules/tslint/bin/tslint --project tsconfig.json src/**/*.ts",
"pretest": "npm run lint",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^10.11.6",
"mocha": "^6.2.0",
"tslint": "^5.18.0",
"tslint-config-airbnb": "^5.11.1",
"typemoq": "^2.1.0",
"typescript": "^3.5.3",
"vscode": "^1.1.33"
},
"dependencies": {}
}