-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.73 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
{
"name": "vscode-openlastrpt",
"displayName": "Arma 3 - Open Last RPT",
"description": "Quickly opens the last Arma 3 log file (`*.rpt`).",
"version": "1.2.0",
"publisher": "bux578",
"engines": {
"vscode": "^1.5.0"
},
"categories": [
"Other"
],
"license": "GNU GPLv2",
"icon": "images/icon.png",
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.openLastRpt",
"title": "Open Last RPT"
}
],
"keybindings": [
{
"command": "extension.openLastRpt",
"key": "ctrl+alt+r",
"mac": "cmd+alt+r"
}
],
"configuration": {
"type": "object",
"title": "Arma 3 - Open Last RPT",
"properties": {
"rpt.differentRptFolder": {
"type": "string",
"default": "",
"description": "Point to a different folder to search for Arma 3's RPT files"
}
}
},
"languages": [{
"id": "log",
"extensions": [ ".rpt" ]
}]
},
"repository": {
"type": "git",
"url": "https://github.com/bux/vscode-OpenLastRPT.git"
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.6",
"mocha": "^10.2.0",
"typescript": "^5.3.3",
"vscode": "^1.0.0"
}
}