-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.48 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
{
"name": "vscode-cellscript-language",
"displayName": "CellScript Language & Themes",
"description": "CellScript Language Support, Syntax Highlighting, and Themes",
"publisher": "CellScript",
"icon": "images/icon.png",
"preview": true,
"version": "0.0.4",
"engines": {
"vscode": "^1.60.0"
},
"keywords": [
"cellscript",
"bitcoin",
"rgb++",
"nervos",
"ckb",
"utxo",
"blockchain",
"security",
"audit",
"review",
"developer",
"language",
"theme"
],
"categories": [
"Programming Languages"
],
"bugs": {
"url": "https://github.com/cell-labs/vscode-cellscript-language/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/cell-labs/vscode-cellscript-language"
},
"scripts": {
"test": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=. --extensionTestsPath=dist/web/test/suite/index.js",
"run-in-browser": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=. ."
},
"contributes": {
"languages": [
{
"id": "cellscript",
"aliases": [
"cellscript",
"cellscript"
],
"extensions": [
".cell"
],
"configuration": "./src/language-configuration.json"
}
],
"grammars": [
{
"language": "cellscript",
"scopeName": "source.cellscript.security",
"path": "./src/syntaxes/cellscript.tmLanguage.json",
"injectTo": [
"source.cellscript"
]
}
],
"themes": [
{
"label": "CellScript Visual Developer Dark",
"uiTheme": "vs-dark",
"path": "./src/themes/OneDarkAuditor.json"
},
{
"label": "CellScript Visual Developer Solarized Light",
"uiTheme": "vs",
"path": "./src/themes/solarized-light-color-theme.json"
},
{
"label": "CellScript Visual Developer Light (Visual Studio)",
"uiTheme": "vs",
"path": "./src/themes/light_vs.json"
}
]
},
"devDependencies": {
"@vscode/test-web": "^0.0.54"
}
}