-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
103 lines (103 loc) · 3.23 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
{
"name": "vscode-kite",
"displayName": "KiteConnect",
"description": "Extension to get real time data for Indian Stock Markets with Zerodha's KiteConnect API",
"version": "0.0.1",
"publisher": "mrkaran",
"icon": "images/kite-logo.png",
"repository": {
"type": "git",
"url": "https://github.com/mr-karan/vscode-kite"
},
"engines": {
"vscode": "^1.19.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.getQuote",
"onCommand:extension.fetchMargin",
"onCommand:extension.streamData",
"onCommand:extension.initializeKite"
],
"main": "./extension",
"contributes": {
"configuration": {
"properties": {
"vscode-kite.symbols": {
"type": "array",
"default": [],
"description": "Stocks that you want to track"
},
"vscode-kite.exchange": {
"type": "string",
"default": "NSE",
"description": "Fetch data from exchange. Default: NSE"
},
"vscode-kite.api_key": {
"type": "string",
"default": "",
"description": "API Key for KiteConnect App"
},
"vscode-kite.request_token": {
"type": "string",
"default": "",
"description": "Request Token for KiteConnect API"
},
"vscode-kite.api_secret": {
"type": "string",
"default": "",
"description": "API Secret for KiteConnect API"
},
"vscode-kite.live_stocks": {
"type": "array",
"default": [],
"description": "Add instrument tokens for live LTP Streaming"
},
"vscode-kite.test": {
"type": "array",
"default": [],
"description": "Add instrument tokens for live LTP Streaming"
}
}
},
"commands": [
{
"command": "extension.getQuote",
"title": "Quote",
"category": "Kite"
},
{
"command": "extension.fetchMargin",
"title": "Margin",
"category": "Kite"
},
{
"command": "extension.streamData",
"title": "Stream",
"category": "Kite"
},
{
"command": "extension.initializeKite",
"title": "Login",
"category": "Kite"
}
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.6.1",
"vscode": "^1.1.6",
"eslint": "^4.6.1",
"@types/node": "^7.0.43",
"@types/mocha": "^2.2.42"
},
"dependencies": {
"kiteconnect": "^1.2.2",
"store": "^2.0.12"
}
}