-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.06 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
{
"name": "pdf-view",
"displayName": "pdf-view [eShell]",
"description": "pdf view for eShell",
"publisher": "bringout",
"version": "2.4.7",
"engines": {
"vscode": "^1.47.0"
},
"license": "MIT",
"keywords": [
"eShell"
],
"categories": [
"Other"
],
"activationEvents": [
"onCommand:pdf.view"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "pdf.view",
"title": "View",
"category": "PDF"
}
]
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "yarn run compile && node ./node_modules/vscode/bin/test",
"extension-package": "vsce package --yarn"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^12.12.0",
"@types/vscode": "^1.47.0",
"@types/vscode-webview": "^1.57.0",
"@typescript-eslint/eslint-plugin": "^4.16.0",
"@typescript-eslint/parser": "^4.16.0",
"eslint": "^7.21.0",
"typescript": "^4.2.2"
},
"dependencies": {},
"repository": {
"url": "https://github.com/hernad/vscode-pdf-view"
}
}