-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 2.86 KB
/
Copy pathpackage.json
File metadata and controls
126 lines (126 loc) · 2.86 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "vscode-pdf",
"packageManager": "pnpm@10.31.0+sha512.e3927388bfaa8078ceb79b748ffc1e8274e84d75163e67bc22e06c0d3aed43dd153151cbf11d7f8301ff4acb98c68bdc5cadf6989532801ffafe3b3e4a63c268",
"displayName": "PDF Viewer",
"description": "Portable document format (PDF) viewer for Visual Studio Code.",
"version": "0.1.11",
"author": "Mathematic Inc",
"publisher": "mathematic",
"repository": {
"type": "git",
"url": "https://github.com/mathematic-inc/vscode-pdf.git"
},
"engines": {
"vscode": "^1.80.0"
},
"icon": "icon.png",
"license": "Apache-2.0",
"keywords": [
"pdf",
"viewer",
"reader",
"document",
"preview"
],
"categories": [
"Visualization",
"Other"
],
"main": "./dist/extension.js",
"contributes": {
"customEditors": [
{
"viewType": "pdf.view",
"displayName": "PDF View",
"selector": [
{
"filenamePattern": "*.pdf"
}
]
}
],
"configuration": {
"title": "PDF",
"type": "object",
"properties": {
"pdf.defaultZoomValue": {
"type": "string",
"default": "auto",
"scope": "resource",
"enum": [
"auto",
"page-actual",
"page-fit",
"page-width",
"50",
"75",
"100",
"125",
"150",
"200"
],
"enumDescriptions": [
"Automatic",
"Actual size",
"Fit page",
"Fit width",
"50%",
"75%",
"100%",
"125%",
"150%",
"200%"
],
"description": "Default zoom level when opening a PDF."
},
"pdf.sidebarViewOnLoad": {
"type": "number",
"default": 0,
"scope": "resource",
"enum": [
-1,
0,
1,
2,
3,
4
],
"enumDescriptions": [
"Restore previous state",
"None",
"Thumbnails",
"Outline",
"Attachments",
"Layers"
],
"description": "Sidebar panel to show when opening a PDF."
}
}
}
},
"scripts": {
"vscode:prepublish": "pnpm run package",
"build": "tsup",
"watch": "tsup --watch",
"package": "tsup --minify",
"lint": "ultracite check",
"format": "ultracite fix",
"prepare": "test -n \"$CI\" || lefthook install"
},
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"esbuild",
"lefthook"
]
},
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@types/node": "^25.4.0",
"@types/vscode": "1.80.0",
"lefthook": "^2.1.3",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"ultracite": "^7.2.5"
}
}