forked from julien-duponchelle/vscode-rainbow-end
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (92 loc) · 2.6 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
{
"name": "rainbow-end",
"publisher": "jduponchelle",
"license": "Apache-2.0",
"displayName": "Rainbow End",
"description": "This extension allows to identify keyword / end with colours.",
"version": "0.7.9",
"icon": "images/logo.png",
"engines": {
"vscode": "^1.34.0"
},
"repository": {
"type": "git",
"url": "https://github.com/noplay/vscode-rainbow-end.git"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:ruby",
"onLanguage:lua",
"onLanguage:elixir",
"onLanguage:crystal",
"onLanguage:shellscript",
"onLanguage:verilog",
"onLanguage:vhdl",
"onLanguage:COBOL",
"onLanguage:julia"
],
"main": "./out/extension",
"contributes": {
"colors": [
{
"id": "rainbowend.deep1",
"description": "Rainbow End color 1",
"defaults": {
"dark": "#e06c75",
"light": "#e06c75",
"highContrast": "#ff0015"
}
},
{
"id": "rainbowend.deep2",
"description": "Rainbow End color 2",
"defaults": {
"dark": "#6ca2e0",
"light": "#6ca2e0",
"highContrast": "#1900ff"
}
},
{
"id": "rainbowend.deep3",
"description": "Rainbow End color 3",
"defaults": {
"dark": "#e0de6c",
"light": "#6ce085",
"highContrast": "#fffb00"
}
}
],
"languages": [
{
"id": "robot",
"extensions": [
".robot",
".resource"
],
"aliases": [
"Robot Framework",
"robotframework",
"RobotFramework"
],
"configuration": "./robot-language-configuration.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint . --ext .ts,.tsx",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^12.12.0",
"@types/vscode": "^1.34.0",
"@typescript-eslint/eslint-plugin": "^4.16.0",
"@typescript-eslint/parser": "^4.16.0",
"eslint": "^7.21.0",
"typescript": "^4.2.2",
"vsce": "^1.95.0"
}
}