-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
60 lines (60 loc) · 1.22 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
{
"description": "Highlights the current line in your editor",
"repository": "https://github.com/Pulsar-Edit-Highlights/line",
"homepage": "https://github.com/Pulsar-Edit-Highlights/line",
"version": "1.0.1",
"license": "MIT",
"name": "line",
"keywords": [
"highlight",
"line",
"selectiton"
],
"bugs": {
"url": "https://github.com/Pulsar-Edit-Highlights/line/issues"
},
"keymaps": [
"../Resources/Keymap.json"
],
"menus": [
"../Resources/Menus.json"
],
"main": "./Source/App",
"styleSheets": [
"../Resources/Styles/Package.less",
"../Resources/Styles/Theme.less"
],
"scripts": {
"test": "pulsar --test Tests"
},
"engines": {
"pulsar": ">=1.100.0 <2.0.0"
},
"configSchema": {
"enableBackgroundColor": {
"default": true,
"type": "boolean"
},
"hideHighlightOnSelect": {
"default": false,
"type": "boolean"
},
"enableSelectionBorder": {
"default": false,
"type": "boolean"
},
"enableUnderline": {
"default": false,
"type": "boolean"
},
"underline": {
"default": "solid",
"enum": [
"solid",
"dotted",
"dashed"
],
"type": "string"
}
}
}