-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
110 lines (110 loc) · 2.99 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "binance-price-watch",
"displayName": "binance-price-watch",
"description": "Visual Studio Code extension for display coin contract price via binance API",
"version": "2.2.4",
"publisher": "chenwuai",
"keywords": [
"btc",
"eth",
"binance",
"vscode"
],
"engines": {
"vscode": "^1.28.0"
},
"categories": [
"Other"
],
"icon": "images/icon.png",
"activationEvents": [
"onStartupFinished"
],
"main": "./extension",
"contributes": {
"configuration": {
"properties": {
"binance-price-watch.enable": {
"type": "boolean",
"default": true,
"description": "Open the price display"
},
"binance-price-watch.symbols": {
"anyOf": [
{
"type": "array",
"default": [
{
"symbol": "btcusdt",
"precision": 2
}
],
"items": {
"anyOf": [
{
"type": "object"
},
{
"type": "string"
}
]
}
},
{
"type": "string",
"default": "btcusdt"
}
],
"description": "Please refer to the plugin home page description to configure."
},
"binance-price-watch.updateInterval": {
"type": "number",
"default": 1500,
"minimum": 1000,
"description": "Configuring polling requests the latest data time interval, Unit: milliseconds"
},
"binance-price-watch.api": {
"type": "string",
"default": "https://api4.binance.com/api/v3/ticker/price",
"format": "uri",
"description": "Configuring contract base API, (try not to modify)"
},
"binance-price-watch.updateOnFocus": {
"type": "boolean",
"default": true,
"description": "Update only on focus"
},
"binance-price-watch.showEyeButton": {
"type": "boolean",
"default": true,
"description": "Show the eye button to hide/show coin prices"
}
}
}
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test",
"package": "vsce package",
"version": "standard-version && git push --follow-tags origin master",
"publish": "vsce publish",
"release": "standard-version && git push origin master --tags && vsce publish"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^7.0.43",
"eslint": "^4.11.0",
"standard-version": "^9.5.0",
"typescript": "^2.6.1",
"vscode": "^1.1.6"
},
"dependencies": {
"axios": "^0.18.0",
"bignumber.js": "^9.1.2"
},
"repository": {
"type": "git",
"url": "https://github.com/chenchenwuai/vscode-binance-price-watch"
},
"__npminstall_done": false
}