-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.05 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.05 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
{
"name": "dunkelpdf",
"displayName": "dunkelPDF",
"description": "Definitive PDF reader for data science workflows with search, outlines, annotations, and footnote previews.",
"version": "0.0.9",
"publisher": "dunkel000",
"icon": "assets/icon.png",
"engines": {
"vscode": "^1.99.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCustomEditor:dunkelpdf.viewer",
"onCommand:dunkelpdf.theme.dark",
"onCommand:dunkelpdf.theme.paper",
"onCommand:dunkelpdf.theme.regular"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "dunkelpdf.theme.dark",
"title": "Dunkel PDF: Use Dark Theme"
},
{
"command": "dunkelpdf.theme.paper",
"title": "Dunkel PDF: Use Sand Theme"
},
{
"command": "dunkelpdf.theme.regular",
"title": "Dunkel PDF: Use Regular Theme"
},
{
"command": "dunkelpdf.bookmarkStyle.pulse",
"title": "Dunkel PDF: Use Classic Bookmark Border"
},
{
"command": "dunkelpdf.bookmarkStyle.moving",
"title": "Dunkel PDF: Use Moving Bookmark Border"
}
],
"customEditors": [
{
"viewType": "dunkelpdf.viewer",
"displayName": "dunkelPDF Data Science Viewer",
"selector": [
{
"filenamePattern": "*.pdf"
}
]
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"package": "vsce package",
"lint": "echo 'No linting configured'",
"test": "mocha \"test/**/*.test.js\""
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^18.19.21",
"@types/vscode": "^1.99.0",
"@vscode/vsce": "^2.23.0",
"mocha": "^10.4.0",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"vscode-uri": "^3.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/dunkel000/dunkelPDF.git"
},
"dependencies": {
"pdfjs-dist": "^5.4.149"
}
}