-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.92 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.92 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
{
"name": "ionic-docs",
"displayName": "Ionic Documentation",
"description": "Quick access to Ionic 4 documentation inside of Visual Studio Code",
"version": "1.0.0",
"icon": "assets/ionic-docs-logo.png",
"publisher": "4tron",
"license": "MIT",
"engines": {
"vscode": "^1.36.0"
},
"repository": {
"type": "git",
"url": "https://github.com/IsaacSomething/ionic4-documents-vscode"
},
"categories": [
"Other"
],
"keywords": [
"ionic",
"documentation",
"markdown"
],
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js"
},
"main": "./out/extension.js",
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.6",
"@types/node": "^10.12.21",
"@types/vscode": "^1.36.0",
"glob": "^7.1.4",
"mocha": "^6.1.4",
"path": "^0.12.7",
"tslint": "^5.12.1",
"typescript": "^3.3.1",
"vscode-test": "^1.0.0-next.0"
},
"dependencies": {
"atob": "^2.1.2",
"node-fetch": "^2.6.0"
},
"activationEvents": [
"onCommand:extension.openDoc",
"onCommand:extension.openDocExt"
],
"contributes": {
"commands": [
{
"command": "extension.openDoc",
"title": "Ionic Documentation"
},
{
"command": "extension.openDocExt",
"title": "Open Documentation Website",
"icon": {
"light": "assets/open-external-light.png",
"dark": "assets/open-external-dark.png"
}
}
],
"menus": {
"editor/context": [
{
"command": "extension.openDoc",
"when": "editorHasSelection"
}
],
"editor/title": [
{
"command": "extension.openDocExt",
"group": "navigation",
"when": "resourceFilename =~ /webview/readme.html"
}
]
}
}
}