forked from kisstkondoros/gutter-preview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 3.47 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
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
{
"name": "vscode-gutter-preview",
"private": true,
"description": "Shows image preview in the gutter and on hover",
"author": "Tamas Kiss",
"publisher": "kisstkondoros",
"license": "MIT",
"version": "0.30.0",
"displayName": "Image preview",
"icon": "images/logo.png",
"engines": {
"vscode": "^1.64.0"
},
"repository": {
"type": "git",
"url": "https://github.com/kisstkondoros/gutter-preview.git"
},
"keywords": [
"vscode",
"image",
"preview"
],
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"contributes": {
"configuration": {
"type": "object",
"title": "Image Preview configuration",
"properties": {
"gutterpreview.sourceFolder": {
"default": "src",
"scope": "resource",
"description": "Additional folder to consider when resolving relative urls",
"type": "string"
},
"gutterpreview.imagePreviewMaxHeight": {
"default": "100",
"scope": "resource",
"description": "The maximum height of the image preview",
"type": "number"
},
"gutterpreview.imagePreviewMaxWidth": {
"default": "-1",
"scope": "resource",
"description": "The maximum width of the image preview, if configured to > 0, it is used instead of the max height setting",
"type": "number"
},
"gutterpreview.showImagePreviewOnGutter": {
"default": true,
"scope": "resource",
"description": "A flag which indicates whether the image preview should be shown on the gutter",
"type": "boolean"
},
"gutterpreview.showUnderline": {
"default": true,
"scope": "resource",
"description": "A flag which indicates whether to underline recognized URLs",
"type": "boolean"
},
"gutterpreview.paths": {
"default": {},
"scope": "resource",
"description": "Specify path mapping to be computed relative to project root.",
"type": "object"
},
"gutterpreview.currentColorForSVG": {
"default": "white",
"scope": "resource",
"description": "The default color to be used in svg previews",
"type": "string"
},
"gutterpreview.enableReferenceLookup": {
"default": false,
"scope": "resource",
"description": "A flag which indicates whether resources should be resolved from references",
"type": "boolean"
}
}
}
},
"main": "./dist/extension",
"scripts": {
"vscode:prepublish": "webpack --mode production",
"webpack": "webpack --mode development",
"webpack-prod": "webpack --mode production",
"webpack-dev": "webpack --mode development --watch"
},
"devDependencies": {
"@types/node": "^14.14.32",
"@types/node-fetch": "^2.5.12",
"@types/tmp": "^0.2.0",
"@types/vscode": "^1.64.0",
"husky": "^5.1.3",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"ts-loader": "^8.0.17",
"tsconfig-paths": "^3.9.0",
"webpack": "^5.58.2",
"webpack-cli": "^4.9.0"
},
"dependencies": {
"filesize": "^8.0.3",
"image-size": "^1.0.1",
"node-fetch": "^2.6.7",
"slash": "^3.0.0",
"tmp": "^0.2.1",
"typescript": "^4.2.3",
"vscode-languageclient": "^7.0.0",
"vscode-languageserver": "^7.0.0",
"vscode-languageserver-textdocument": "^1.0.1",
"vscode-uri": "^3.0.2"
}
}