-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
137 lines (137 loc) · 3.21 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
{
"name": "ultra-cpp",
"displayName": "Ultra.io Smart Contract Toolkit",
"description": "Compile eosio smart contracts, and fix those pesky include errors.",
"publisher": "ultraio",
"repository": {
"url": "https://github.com/Stuyk/ultra-cpp-extension"
},
"version": "1.3.9",
"engines": {
"vscode": "^1.70.0"
},
"categories": [
"Other",
"Programming Languages",
"Linters"
],
"activationEvents": [
"onStartupFinished"
],
"icon": "icon.png",
"galleryBanner": {
"color": "#1F1F1F",
"theme": "dark"
},
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "ultra.installHeaders",
"title": "Add C++ Header Files for EOSIO",
"category": "Ultra"
},
{
"command": "ultra.buildContract",
"title": "Build Contract",
"category": "Ultra"
},
{
"command": "ultra.scaffoldContract",
"title": "Create Smart Contract",
"category": "Ultra"
},
{
"command": "ultra.api",
"title": "API Query",
"category": "Ultra"
},
{
"command": "ultra.transact",
"title": "Create Transaction",
"category": "Ultra"
},
{
"command": "ultra.deployContract",
"title": "Deploy Contract",
"category": "Ultra"
},
{
"command": "ultra.createWallet",
"title": "Wallet - Create",
"category": "Ultra"
},
{
"command": "ultra.destroyWallet",
"title": "Wallet - Destroy",
"category": "Ultra"
},
{
"command": "ultra.showWalletPublicKeys",
"title": "Wallet - List Public Keys",
"category": "Ultra"
},
{
"command": "ultra.addKeyToWallet",
"title": "Wallet - Add Key",
"category": "Ultra"
},
{
"command": "ultra.unlockWallet",
"title": "Wallet - Unlock",
"category": "Ultra"
},
{
"command": "ultra.lockWallet",
"title": "Wallet - Lock",
"category": "Ultra"
},
{
"command": "ultra.createKey",
"title": "Wallet - Create Key",
"category": "Ultra"
}
],
"snippets": [
{
"language": "cpp",
"path": "./snippets/ultra.code-snippets"
},
{
"language": "cpp",
"path": "./snippets/ultra-legacy.code-snippets"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/elliptic": "^6.4.14",
"@types/glob": "^8.1.0",
"@types/node": "20.2.5",
"@types/vscode": "^1.70.0",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"@vscode/test-electron": "^2.3.2",
"elliptic": "^6.5.4",
"typescript": "^5.1.3"
},
"prettier": {
"semi": true,
"singleQuote": true,
"printWidth": 120,
"tabWidth": 4
},
"dependencies": {
"@types/node-fetch": "^2.6.4",
"@ultraos/contract-builder": "^1.0.4",
"@wharfkit/antelope": "^0.7.2",
"eosjs": "^22.1.0",
"eosjs-ecc": "^4.0.7",
"glob": "^8.1.0",
"node-fetch": "^2.6.11"
}
}