-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.47 KB
/
package.json
File metadata and controls
86 lines (86 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
{
"name": "inline-codelens",
"displayName": "Inline CodeLens",
"description": "Show codelens in current line",
"publisher": "sr-team",
"license": "MIT",
"version": "0.0.4",
"repository": {
"type": "git",
"url": "https://github.com/sr-tream/vscode-inline-codelens.git"
},
"icon": "icon.png",
"engines": {
"vscode": "^1.63.0"
},
"categories": [
"Visualization",
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"title": "Inline CodeLens",
"properties": {
"inline-codelens.limit": {
"type": "number",
"default": -1,
"description": "The maximum number of CodeLenses to show. -1 for no limit."
},
"inline-codelens.debounceDelay": {
"type": "number",
"default": 300,
"minimum": 50,
"description": "The debounce delay in milliseconds for refreshing CodeLenses on document change."
},
"inline-codelens.fontDecoration": {
"type": "string",
"default": "font-size: 0.75em;",
"description": "The CSS text decoration to apply to the inline CodeLenses."
},
"inline-codelens.provider": {
"type": "string",
"default": "Decorations",
"enum": [
"Decorations",
"Inlay Hints",
"Hover"
],
"description": "The provider to use for displaying inline CodeLenses."
},
"inline-codelens.hoverMode": {
"type": "string",
"default": "Hover Only",
"enum": [
"Hover Only",
"Gutter Badges",
"Hover + Inlay Hints"
],
"description": "Controls how the Hover provider surfaces CodeLenses."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@types/vscode": "^1.63.0",
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"eslint": "^9.25.1",
"typescript": "^5.8.3",
"@vscode/test-cli": "^0.0.11",
"@vscode/test-electron": "^2.5.2"
}
}