-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.62 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
{
"name": "hoverlens",
"version": "1.3.1",
"publisher": "NonSpicyBurrito",
"engines": {
"vscode": "^1.71.0"
},
"license": "MIT",
"displayName": "Hover Lens",
"description": "Show hover information as end of line decoration.",
"categories": [
"Other"
],
"keywords": [
"hover"
],
"repository": {
"type": "git",
"url": "https://github.com/NonSpicyBurrito/hoverlens.git"
},
"main": "./dist/extension.js",
"contributes": {
"configuration": {
"title": "Hover Lens",
"properties": {
"hoverlens.enabled": {
"description": "Whether Hover Lens is enabled or not.",
"type": "boolean",
"default": true
},
"hoverlens.maximumCursorCount": {
"description": "Maximum cursor count which hover information will be displayed (set to 0 for unlimited).\nDisplaying hover information for too many cursors may degrade editor performance.",
"type": "number",
"default": 3
},
"hoverlens.debounceUpdate": {
"description": "Debounce hover information update (set to 0 for no debounce).\nUpdating hover information too quickly may degrade editor performance.",
"type": "number",
"default": 50
},
"hoverlens.maximumShiftCount": {
"description": "Maximum character count which multiline hover information is allowed to be shifted to avoid being cut off.",
"type": "number",
"default": 40
}
}
}
},
"activationEvents": [
"onStartupFinished"
],
"icon": "icon.png",
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src --ext ts"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/marked": "^4.0.6",
"@types/mocha": "^9.0.0",
"@types/node": "14.x",
"@types/vscode": "^1.71.0",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"@vscode/test-electron": "^2.0.3",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"glob": "^7.2.0",
"mocha": "^9.1.3",
"prettier": "^2.7.1",
"ts-loader": "^9.2.6",
"typescript": "^4.5.4",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"lodash": "^4.17.21",
"markdown-to-txt": "^2.0.1"
}
}