-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.78 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.78 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
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
{
"name": "gimlet",
"displayName": "Gimlet",
"description": "Debug Solana programs easily",
"publisher": "limechain",
"icon": "images/logo.png",
"version": "0.1.21",
"license": "MIT",
"galleryBanner": {
"color": "#21214c",
"theme": "dark"
},
"keywords": [
"solana",
"debugger",
"sbpf",
"blockchain",
"solana-program"
],
"engines": {
"vscode": "^1.110.1"
},
"categories": [
"Debuggers"
],
"activationEvents": [
"onLanguage:rust",
"onLanguage:typescript"
],
"main": "./src/extension.js",
"contributes": {
"commands": [
{
"command": "extension.runGimletSetup",
"title": "Gimlet: Run Setup"
},
{
"command": "gimlet.stopSession",
"title": "Gimlet: Stop Debug Session"
},
{
"command": "gimlet.debugAtLine",
"title": "Gimlet: Debug at Line"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "echo 'No compilation needed for JavaScript'",
"watch": "echo 'No watch needed for JavaScript'",
"lint": "eslint .",
"format": "prettier --write ."
},
"devDependencies": {
"eslint": "^10.2.0",
"globals": "^17.4.0",
"prettier": "^3.8.1"
},
"homepage": "https://github.com/LimeChain/gimlet#readme",
"bugs": {
"url": "https://github.com/LimeChain/gimlet/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/LimeChain/gimlet.git"
},
"dependencies": {
"systeminformation": "^5.31.5",
"toml": "^4.1.1"
}
}