-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.69 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "boringdocs",
"displayName": "boringdocs",
"description": "The vscode extension documentation for sailsjs and the javascript boring stack",
"version": "0.0.1",
"publisher": "LennoxCharles",
"icon": "assets/boringdocs.png",
"engines": {
"vscode": "^1.86.0"
},
"keywords": [
"documentation",
"docs",
"search",
"shortcut",
"boringstack",
"javascript",
"boring-stack",
"sailsjs",
"sails-js",
"sails",
"tbjs"
],
"repository": {
"type": "git",
"url": "https://github.com/lennyAiko/boringdocs"
},
"categories": [
"Other",
"Extension Packs",
"Education",
"Programming Languages"
],
"activationEvents": [
"onLanguage:javascript"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "boringdocs.sails",
"title": "Display the documentation for sailsjs",
"category": "Boring Docs"
},
{
"command": "boringdocs.tbjs",
"title": "Display the documentation for the boring stack (tbjs)",
"category": "Boring Docs"
}
],
"keybindings": [
{
"command": "boringdocs.sails",
"key": "ctrl+shift+1",
"mac": "ctrl+cmd+1"
},
{
"command": "boringdocs.tbjs",
"key": "ctrl+shift+2",
"mac": "ctrl+cmd+2"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "vscode-test"
},
"devDependencies": {
"@types/vscode": "^1.86.0",
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"eslint": "^8.56.0",
"typescript": "^5.3.3",
"@vscode/test-cli": "^0.0.4",
"@vscode/test-electron": "^2.3.9"
}
}