-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
62 lines (62 loc) · 1.51 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
{
"name": "vscode-intellij-recent-files",
"displayName": "vscode-intellij-recent-files",
"description": "IntelliJ-style recent files command for VS Code.",
"publisher": "percygrunwald",
"license": "MIT",
"icon": "images/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/percygrunwald/vscode-intellij-recent-files"
},
"version": "1.1.1",
"engines": {
"vscode": "^1.34.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.intellijRecentFiles"
],
"main": "./out/extension.js",
"extensionKind": [
"ui"
],
"contributes": {
"commands": [
{
"command": "extension.intellijRecentFiles",
"title": "IntelliJ Recent Files"
}
],
"configuration": [
{
"id": "intellijRecentFiles",
"title": "IntelliJ Recent Files",
"properties": {
"intellijRecentFiles.navigate": {
"type": "boolean",
"default": true,
"description": "Immediately navigate after releasing the modifier key",
"scope": "window"
}
}
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint . --ext .ts,.tsx",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^12.12.0",
"@types/vscode": "^1.34.0",
"@typescript-eslint/eslint-plugin": "^4.16.0",
"@typescript-eslint/parser": "^4.16.0",
"eslint": "^7.21.0",
"typescript": "^4.2.2"
}
}