-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.47 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.47 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
{
"name": "postscript-preview",
"displayName": "PostScript Preview",
"description": "PostScript Preview is an extension that helps to preview EPS and PS files in Visual Studio Code.",
"version": "0.5.4",
"icon": "images/logo.png",
"publisher": "ahnafnafee",
"engines": {
"vscode": "^1.46.0"
},
"categories": [
"Other"
],
"author": {
"name": "Ahnaf An Nafee",
"email": "ahnafnafee@gmail.com"
},
"galleryBanner": {
"color": "#4B7D78",
"theme": "dark"
},
"keywords": [
"postscript",
"ghostscript",
"ps",
"preview"
],
"activationEvents": [
"onLanguage:postscript"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "postscript-preview.sidePreview",
"title": "Preview PostScript",
"icon": "$(open-preview)"
}
],
"menus": {
"editor/title": [
{
"when": "resourceLangId == postscript",
"command": "postscript-preview.sidePreview",
"group": "navigation"
}
]
},
"configuration": {
"title": "PostScript Preview",
"properties": {
"postscript-preview.path.ps2pdf": {
"type": "string",
"default": "ps2pdf",
"description": "Path to ps2pdf executable (from GhostScript). Use this if ps2pdf is not in your system PATH."
},
"postscript-preview.path.pdftocairo": {
"type": "string",
"default": "pdftocairo",
"description": "Path to pdftocairo executable (from Poppler). Use this if pdftocairo is not in your system PATH."
},
"postscript-preview.path.pdfinfo": {
"type": "string",
"default": "pdfinfo",
"description": "Path to pdfinfo executable (from Poppler). Used for detecting page count in multi-page documents."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^25.0.2",
"@types/vscode": "^1.46.0",
"@typescript-eslint/eslint-plugin": "^8.50.0",
"@typescript-eslint/parser": "^8.50.0",
"@vscode/test-electron": "^2.4.1",
"eslint": "^9.39.2",
"lodash": "^4.17.21",
"mocha": "^11.7.5",
"typescript": "^5.9.3"
},
"dependencies": {
"@types/temp": "^0.9.4",
"glob": "^7.2.3",
"temp": "^0.9.1"
},
"repository": {
"type": "git",
"url": "https://github.com/ahnafnafee/PostScript-Preview.git"
},
"sponsor": {
"url": "https://github.com/sponsors/ahnafnafee"
}
}