-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 1.85 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 1.85 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
{
"name": "learn-vim",
"icon": "media/icon.png",
"displayName": "Learn Vim",
"description": "Learn Vim right within your favorite editor",
"version": "0.0.28",
"publisher": "vintharas",
"keywords": [
"vim",
"vi",
"vscodevim"
],
"engines": {
"vscode": "^1.48.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:learn-vim.learnVim",
"onView:learn-vim"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "learn-vim.learnVim",
"title": "Learn Vim"
},
{
"command": "learn-vim.openChapter",
"title": "Open Chapter"
}
],
"menus": {
"commandPalette": [
{
"command": "learn-vim.openChapter",
"when": "false"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "learn-vim-container",
"title": "Learn Vim",
"icon": "media/code.svg"
}
]
},
"views": {
"learn-vim-container": [
{
"id": "learn-vim",
"name": "Learn Vim"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.48.0",
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.27",
"eslint": "^7.6.0",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"glob": "^7.1.6",
"mocha": "^8.0.1",
"typescript": "^3.8.3",
"vscode-test": "^1.4.0"
},
"__metadata": {
"id": "159d930e-fdd0-42de-bbf8-5f62686e83a7",
"publisherId": "b4de0dac-3370-427d-bfc7-59da015f6b95",
"publisherDisplayName": "vintharas",
"targetPlatform": "undefined",
"updated": false,
"isPreReleaseVersion": false,
"preRelease": false,
"installedTimestamp": 1656209471412
}
}