-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.46 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.46 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
{
"name": "pine-script-syntax",
"displayName": "Pine Script Syntax",
"description": "Syntax highlighting for Pine Script files (.pine) used in TradingView.",
"icon": "images/logo.png",
"version": "0.0.5",
"publisher": "0xjcf",
"license": "MIT",
"engines": {
"vscode": "^1.93.1"
},
"author": {
"name": "0xjcf",
"url": "https://github.com/0xjcf"
},
"categories": [
"Programming Languages", "Themes"
],
"contributes": {
"languages": [{
"id": "pine-script",
"aliases": ["Pine Script", "pine-script"],
"extensions": [".pine"],
"configuration": "./language-configuration.json"
}],
"themes": [
{
"label": "Pine Script Dark",
"uiTheme": "vs-dark",
"path": "./themes/pine-script-color-theme.json"
},
{
"label": "Pine Script Neon Dark",
"uiTheme": "vs-dark",
"path": "./themes/pine-script-neon-dark.json"
},
{
"label": "Pine Script Dimmed Dark",
"uiTheme": "vs-dark",
"path": "./themes/pine-script-dimmed-dark.json"
},
{
"label": "Pine Script Light",
"uiTheme": "vs",
"path": "./themes/pine-script-light-theme.json"
}
],
"grammars": [{
"language": "pine-script",
"scopeName": "source.pine",
"path": "./syntaxes/pine-script.tmLanguage.json"
}]
},
"repository": {
"type": "git",
"url": "https://github.com/0xjcf/pine-script-syntax.git"
}
}