-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
88 lines (88 loc) · 2.39 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
{
"name": "vscode-plugin-image-hover-preview",
"description": "图片预览插件",
"keywords": [
"vscode",
"plugin",
"image preview"
],
"version": "0.6.0",
"scripts": {
"dev": "npm run -S esbuild-base -- --sourcemap --watch",
"build": "npm run -S esbuild-base -- --sourcemap",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=dist/main.js --external:vscode --format=cjs --platform=node",
"vscode:prepublish": "npm run -S esbuild-base -- --minify",
"pkg": "yarn vsce package",
"pub": "yarn vsce publish",
"test": "vitest"
},
"homepage": "https://github.com/ltaoo/vscode-plugin-image-hover-preview/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/ltaoo/vscode-plugin-image-hover-preview"
},
"bugs": {
"url": "https://github.com/ltaoo/vscode-plugin-image-hover-preview/issues"
},
"main": "./dist/main.js",
"displayName": "Image Hover Preview",
"publisher": "ltaoo",
"engines": {
"vscode": "^1.27.0"
},
"categories": [
"Other"
],
"icon": "images/icon.png",
"activationEvents": [
"*"
],
"dependencies": {
"image-size": "^1.0.0",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@types/node": "^7.0.43",
"@types/node-fetch": "^2.5.12",
"esbuild": "^0.12.6",
"eslint": "^4.11.0",
"tsc": "^2.0.3",
"typescript": "^4.3.5",
"vitest": "^0.27.1",
"vsce": "^1.92.0",
"vscode": "^1.1.6"
},
"contributes": {
"configuration": {
"title": "Image Hover Preview",
"properties": {
"imageHoverPreview.showSize": {
"type": "boolean",
"default": true,
"description": "Need show image size and dimensions."
},
"imageHoverPreview.languages": {
"type": "array",
"default": [
"css",
"javascript",
"less",
"typescriptreact",
"typescript",
"javascriptreact",
"html",
"markdown",
"vue"
],
"description": "Supported languages."
}
}
},
"commands": [],
"keybindings": [],
"menus": {},
"snippets": []
},
"license": "SEE LICENSE IN LICENSE.txt",
"packageManager": "[email protected]+sha512.faf344af2d6ca65c4c5c8c2224ea77a81a5e8859cbc4e06b1511ddce2f0151512431dd19e6aff31f2c6a8f5f2aced9bd2273e1fed7dd4de1868984059d2c4247"
}