-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 2.55 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
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
{
"name": "argus",
"publisher": "gavinleroy",
"displayName": "Argus",
"description": "A trait debugger for Rust",
"license": "MIT",
"icon": "argus-logo-128.png",
"version": "0.1.15",
"engines": {
"vscode": "^1.99.1"
},
"bugs": {
"url": "https://github.com/cognitive-engineering-lab/argus/issues",
"email": "gavinleroy6@gmail.com"
},
"repository": {
"url": "https://github.com/cognitive-engineering-lab/argus",
"type": "git"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:rust"
],
"contributes": {
"commands": [
{
"command": "argus.inspectWorkspace",
"title": "Argus: Inspect current file"
},
{
"command": "argus.cancelTasks",
"title": "Argus: Cancel running tasks"
},
{
"command": "argus.pinMBData",
"title": "Argus: Pin mini-buffer data"
},
{
"command": "argus.unpinMBData",
"title": "Argus: Unpin mini-buffer data"
}
],
"keybindings": [
{
"command": "argus.pinMBData",
"key": "ctrl+alt+T",
"mac": "shift+cmd+t"
},
{
"command": "argus.unpinMBData",
"key": "ctrl+alt+U",
"mac": "shift+cmd+u"
}
]
},
"files": [
"dist",
"argus-logo-128.png",
"LICENSE",
"README.md"
],
"main": "./dist/argus.js",
"exports": {
".": {
"default": "./dist/argus.js"
},
"./*": {
"default": "./dist/*.js"
}
},
"type": "commonjs",
"depot": {
"platform": "node",
"depot-version": "0.3.0"
},
"typedoc": {
"entryPoint": "./src/main.ts"
},
"vsce": {
"dependencies": false
},
"scripts": {
"build": "depot build",
"vscode:prepublish": "depot build --release",
"pretest": "pnpm run build",
"test": "node ./dist/tests/runTests.js"
},
"devDependencies": {
"@argus/common": "workspace:*",
"@argus/panoptes": "workspace:*",
"@argus/script": "workspace:*",
"@argus/system": "workspace:*",
"@estruyf/vscode": "^1.1.0",
"@types/lodash": "^4.17.16",
"@types/node": "22.14.1",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"react": "catalog:",
"react-dom": "catalog:",
"@types/vscode": "^1.99.1",
"cancelable-promise": "^4.3.1",
"lodash": "^4.17.21",
"new-github-issue-url": "^1.1.0",
"open": "^10.1.1",
"toml": "^3.0.0",
"typescript": "^5.8.3",
"vite": "^6.3.2",
"vite-plugin-static-copy": "^2.3.1"
},
"__metadata": {
"size": 233201290
}
}