forked from Scottcjn/rustchain-bounties
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.33 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
{
"name": "rustchain-wallet-dashboard",
"displayName": "RustChain Wallet Dashboard",
"description": "A VS Code extension providing a wallet and miner dashboard for the RustChain ecosystem. Shows RTC balance, miner status, bounty list, and epoch settlement countdown, and quick 'Claim Bounty' button.",
"version": "0.0.1",
"publisher": "o1TIMI",
"engines": {
"vscode": "^1.70.0"
},
"categories": ["Other"],
"activationEvents": [
"onCommand:rustchain-wallet-dashboard.showDashboard"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "rustchain-wallet-dashboard.showDashboard",
"title": "RustChain: Show Wallet Dashboard"
}
],
"configuration": {
"type": "object",
"properties": {
"rustchainWallet.nodeUrl": {
"type": "string",
"default": "https://api.rustchain.org",
"description": "RustChain node URL used to fetch wallet balance and miner status."
},
"rustchainWallet.walletId": {
"type": "string",
"default": "",
"description": "Your RustChain wallet address to display balance."
}
}
}
},
"scripts": {
"compile": "tsc -p .",
"watch": "tsc -w -p ."
},
"devDependencies": {
"typescript": "^4.9.5",
"@types/vscode": "^1.70.0"
}
}