-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 2.72 KB
/
Copy pathpackage.json
File metadata and controls
125 lines (125 loc) · 2.72 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
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
118
119
120
121
122
123
124
125
{
"name": "parameter-hints",
"displayName": "Parameter Hints",
"description": "Automatic parameter hints",
"version": "0.2.7",
"preview": true,
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/DominicVonk/VSCode-Parameter-Hints.git"
},
"scripts": {
"package": "npx vsce package",
"publish": "npx vsce publish && npx ovsx publish",
"vscode:prepublish": "webpack --mode production",
"compile": "webpack --mode none",
"watch": "webpack --mode none --watch",
"test-compile": "npm run compile"
},
"engines": {
"vscode": "^1.49.0"
},
"publisher": "DominicVonk",
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"commands": [
{
"command": "parameterHints.toggle",
"title": "Parameter Hints: Hide / Show Hints"
}
],
"configuration": [
{
"title": "Parameter Hints",
"properties": {
"parameterHints.enabled": {
"type": "boolean",
"description": "Enable Parameter Hints",
"default": true
},
"parameterHints.languages": {
"type": "array",
"description": "Enable Languages",
"default": [
"php",
"javascript",
"typescript",
"javascriptreact",
"typescriptreact"
],
"enum": [
"php",
"javascript",
"typescript",
"javascriptreact",
"typescriptreact"
]
},
"parameterHints.hintingType": {
"type": "string",
"default": "variableAndType",
"enum": [
"typeOnly",
"variableAndType",
"variableOnly"
]
},
"parameterHints.padding": {
"type": "string",
"description": "Padding Vertical",
"default": "1 4"
},
"parameterHints.margin": {
"type": "string",
"description": "Margin",
"default": "0 1"
}
}
}
],
"colors": [
{
"id": "parameterHints.hintForeground",
"description": "Specifies the foreground color for the hints",
"defaults": {
"dark": "#FFFFFF88",
"light": "#00000088",
"highContrast": "#FFFFFF88"
}
},
{
"id": "parameterHints.hintBackground",
"description": "Specifies the background color for the hints",
"defaults": {
"dark": "#11111188",
"light": "#eeeeee88",
"highContrast": "#33333388"
}
}
]
},
"main": "./dist/extension.js",
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.21",
"@types/vscode": "^1.49.0",
"eslint": "^6.8.0",
"glob": "^7.1.6",
"mocha": "^7.1.2",
"typescript": "^4.1.0-dev.20200930",
"vscode-test": "^1.4.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"dash-ast": "^2.0.1",
"php-parser": "^3.0.1"
}
}