-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
155 lines (155 loc) · 4.44 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"name": "bitcoin",
"displayName": "Bitcoin",
"description": "Tools for working with Bitcoin (BSV)",
"publisher": "Satchmo",
"version": "0.0.15",
"icon": "images/icon.png",
"engines": {
"vscode": "^1.49.0"
},
"categories": [
"Other"
],
"repository": {
"type": "git",
"url": "https://github.com/rohenaz/vscode-bitcoin.git"
},
"activationEvents": [
"onCommand:bitcoin.asmFromScript",
"onCommand:bitcoin.addressFromHDPrivateKey",
"onCommand:bitcoin.addressFromHDPublicKey",
"onCommand:bitcoin.addressFromPrivateKey",
"onCommand:bitcoin.addressFromPublicKey",
"onCommand:bitcoin.addressFromWIF",
"onCommand:bitcoin.decodeRawTx",
"onCommand:bitcoin.extendedPrivateKeyFromMnemonic",
"onCommand:bitcoin.generateHDPrivateKey",
"onCommand:bitcoin.generateHDPublicKey",
"onCommand:bitcoin.generateMnemonic",
"onCommand:bitcoin.generatePrivateKey",
"onCommand:bitcoin.generatePublicKey",
"onCommand:bitcoin.generateWIF",
"onCommand:bitcoin.getTx",
"onCommand:bitcoin.getUtxosForAddress",
"onCommand:bitcoin.publicKeyFromPrivateKey",
"onCommand:bitcoin.rawTxToBob",
"onCommand:bitcoin.rawTxToTxo",
"onCommand:bitcoin.xPubFromxPriv"
],
"main": "./dist/extension",
"contributes": {
"commands": [
{
"command": "bitcoin.asmFromScript",
"title": "Bitcoin: ASM from Script"
},
{
"command": "bitcoin.addressFromWIF",
"title": "Bitcoin: Address from WIF"
},
{
"command": "bitcoin.addressFromPublicKey",
"title": "Bitcoin: Address from Public Key"
},
{
"command": "bitcoin.addressFromPrivateKey",
"title": "Bitcoin: Address From Private Key"
},
{
"command": "bitcoin.addressFromHDPublicKey",
"title": "Bitcoin: Address From Extended Public Key"
},
{
"command": "bitcoin.addressFromHDPrivateKey",
"title": "Bitcoin: Address From Extended Private Key"
},
{
"command": "bitcoin.generatePublicKey",
"title": "Bitcoin: Generate Public Key"
},
{
"command": "bitcoin.generatePrivateKey",
"title": "Bitcoin: Generate Private Key"
},
{
"command": "bitcoin.generateHDPublicKey",
"title": "Bitcoin: Generate Extended Public Key"
},
{
"command": "bitcoin.getUtxosForAddress",
"title": "Bitcoin: Get UTXOs for Address"
},
{
"command": "bitcoin.xPubFromxPriv",
"title": "Bitcoin: Extended Public Key from Extended Private Key"
},
{
"command": "bitcoin.extendedPrivateKeyFromMnemonic",
"title": "Bitcoin: Extended Private Key from Mnemonic"
},
{
"command": "bitcoin.generateHDPrivateKey",
"title": "Bitcoin: Generate ExtendedPrivate Key"
},
{
"command": "bitcoin.generateMnemonic",
"title": "Bitcoin: Generate Mnemonic"
},
{
"command": "bitcoin.generateWIF",
"title": "Bitcoin: Generate WIF"
},
{
"command": "bitcoin.getTx",
"title": "Bitcoin: Fetch a Tx by Transaction ID"
},
{
"command": "bitcoin.publicKeyFromPrivateKey",
"title": "Bitcoin: Public Key From Private Key"
},
{
"command": "bitcoin.decodeRawTx",
"title": "Bitcoin: Decode Raw Transaction"
},
{
"command": "bitcoin.rawTxToTxo",
"title": "Bitcoin: Raw Tx to Txo"
},
{
"command": "bitcoin.rawTxToBob",
"title": "Bitcoin: Raw Tx to Bob"
}
]
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"test-compile": "tsc -p ./",
"lint": "eslint . --ext .ts,.tsx"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.27",
"@types/vscode": "^1.49.0",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"eslint": "^7.9.0",
"glob": "^7.1.6",
"mocha": "^8.1.3",
"ts-loader": "^7.0.5",
"typescript": "^4.0.2",
"vscode-test": "^1.4.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"@libitx/shapeshifter.js": "^0.1.0",
"@types/node-fetch": "^2.5.7",
"bsv": "^2.0.0-beta.42",
"core-js": "^3.6.5",
"node-fetch": "^2.6.1"
}
}