-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.42 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
{
"name": "hoverpreview",
"displayName": "Hover Preview",
"publisher": "FoxcraftTech",
"description": "hover over html tags to view the rendered output",
"icon": "icons/hover-preview-128.png",
"version": "1.0.3",
"keywords": [
"hover preview",
"preview on hover html",
"Element preview",
"quick preview",
"preview",
"html",
"html5",
"Javascript",
"css"
],
"author": {
"name": "Paul"
},
"sponsor": {
"url": "https://buymeacoffee.com/artpaul"
},
"license": "AGPL-3.0-only",
"homepage": "https://github.com/PaulleDemon",
"repository": {
"type": "git",
"url": "https://github.com/PaulleDemon/Hover-Preview?tab=readme-ov-file"
},
"bugs": "https://github.com/PaulleDemon/Hover-Preview/issues/new/choose",
"engines": {
"vscode": "^1.82.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "hoverPreview.hello",
"category": "Hover preview",
"title": "Hello"
}
],
"configuration": {
"title": "Hover Preview",
"properties": {
"hoverPreview.previewSize": {
"type": "object",
"description": "height and width of the preview",
"properties": {
"width": {
"type": "number",
"default": 200,
"description": "The width of the hover tooltip"
},
"height": {
"type": "number",
"default": 200,
"description": "The height of the hover tooltip"
}
}
}
}
},
"languages": [
{
"id": "html",
"aliases": [
"HTML",
"HTML5"
],
"extensions": [
".html"
],
"configuration": "./language-configuration.json"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "vscode-test",
"compile": "webpack --mode development",
"watch": "webpack --mode development --watch",
"vscode:prepublish": "npm run package",
"package": "webpack --mode production --devtool hidden-source-map"
},
"devDependencies": {
"@babel/core": "^7.24.9",
"@babel/preset-env": "^7.24.8",
"@types/mocha": "^10.0.7",
"@types/node": "20.x",
"@types/vscode": "^1.82.0",
"@vscode/test-cli": "^0.0.9",
"@vscode/test-electron": "^2.4.0",
"babel-loader": "^9.1.3",
"esbuild": "^0.23.0",
"eslint": "^8.57.0",
"npm-run-all": "^4.1.5",
"typescript": "^5.4.5",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^6.0.1",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"fs-extra": "^11.2.0",
"node-html-parser": "^6.1.13",
"puppeteer": "^22.13.1",
"vscode-html-languageservice": "^5.3.0"
}
}