-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
85 lines (85 loc) · 2.46 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
{
"name": "vscode-solidity-language",
"displayName": "Solidity Language & Themes (only)",
"description": "Solidity Language Support, Syntax Highlighting, and Themes",
"publisher": "tintinweb",
"icon": "images/icon.png",
"preview": true,
"version": "0.0.7",
"engines": {
"vscode": "^1.60.0"
},
"keywords": [
"solidity",
"ethereum",
"blockchain",
"security",
"audit",
"review",
"developer",
"solidity security",
"solidity audit",
"language",
"theme"
],
"categories": [
"Programming Languages"
],
"bugs": {
"url": "https://github.com/tintinweb/vscode-solidity-language/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/tintinweb/vscode-solidity-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": "solidity",
"aliases": [
"solidity",
"solidity"
],
"extensions": [
".sol"
],
"configuration": "./src/language-configuration.json"
}
],
"grammars": [
{
"language": "solidity",
"scopeName": "source.solidity.security",
"path": "./src/syntaxes/solidity.tmLanguage.json",
"injectTo": [
"source.solidity"
]
}
],
"themes": [
{
"label": "Solidity Visual Developer Dark",
"uiTheme": "vs-dark",
"path": "./src/themes/OneDarkAuditor.json"
},
{
"label": "Solidity Visual Developer Solarized Light",
"uiTheme": "vs",
"path": "./src/themes/solarized-light-color-theme.json"
},
{
"label": "Solidity Visual Developer Light (Visual Studio)",
"uiTheme": "vs",
"path": "./src/themes/light_vs.json"
}
]
},
"devDependencies": {
"@vscode/test-web": "^0.0.34"
},
"license": "MIT"
}