-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
241 lines (241 loc) · 6.23 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
{
"publisher": "innocenzi",
"name": "vscode-hybridly",
"displayName": "Hybridly",
"version": "0.9.0",
"private": true,
"preview": true,
"packageManager": "[email protected]",
"description": "Visual Studio Code extension for Hybridly",
"author": "Enzo Innocenzi <[email protected]>",
"license": "MIT",
"funding": "https://github.com/sponsors/innocenzi",
"homepage": "https://github.com/hybridly/vscode#readme",
"repository": {
"type": "git",
"url": "https://github.com/hybridly/vscode"
},
"bugs": {
"url": "https://github.com/hybridly/vscode/issues"
},
"keywords": [
"hybridly",
"inertia",
"inertiajs",
"vue",
"laravel",
"vite",
"php",
"class generation",
"pestphp",
"pest"
],
"sponsor": {
"url": "https://github.com/sponsors/innocenzi"
},
"categories": [
"Other"
],
"main": "./dist/index.js",
"icon": "./res/icon.png",
"files": [
"LICENSE.md",
"dist",
"package.json",
"res"
],
"galleryBanner": {
"color": "#252525",
"theme": "dark"
},
"engines": {
"vscode": "^1.73.0"
},
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"configuration": {
"title": "Hybridly",
"properties": {
"hybridly.disable": {
"type": "boolean",
"default": "false",
"description": "Disables the extension."
},
"hybridly.componentMethods": {
"type": "array",
"default": [
"hybridly",
"view",
"component",
"dialog",
"hybridly()->view",
"hybridly()->component",
"partial_headers",
"assertHybridView"
],
"description": "Additional methods which first parameter should link to page components."
},
"hybridly.routeMethods": {
"type": "array",
"default": [
"route",
"to_route",
"router.to",
"base"
],
"description": "Additional methods which first parameter correspond to a route name."
},
"hybridly.generation.strictTypes": {
"type": "boolean",
"default": false,
"description": "Whether to declare strict types when generation PHP files."
},
"hybridly.generation.final": {
"type": "boolean",
"default": false,
"description": "Whether to declare new classes as final when generation PHP files."
},
"hybridly.test.directory": {
"type": "string",
"description": "Relative path to the test directory, if custom. Supports Pest only."
},
"hybridly.test.retry": {
"type": "boolean",
"default": true,
"description": "Prioritize previously-failed tests when running them. Supports Pest only."
},
"hybridly.test.bail": {
"type": "boolean",
"default": true,
"description": "Stop execution upon first non-passing test. Supports Pest only."
},
"hybridly.test.arguments": {
"type": "string",
"default": "",
"description": "Add arbitrary arguments to all test commands."
}
}
},
"commands": [
{
"command": "hybridly.php.update-namespace",
"title": "Update the current namespace",
"category": "Hybridly",
"enablement": "editorLangId == php"
},
{
"command": "hybridly.php.generate-class",
"title": "Generate class",
"category": "Hybridly",
"enablement": "editorLangId == php"
},
{
"command": "hybridly.run-previous-tests",
"title": "Run previous tests",
"category": "Hybridly"
},
{
"command": "hybridly.php.run-current-test",
"title": "Run current test",
"category": "Hybridly",
"enablement": "editorLangId == php"
},
{
"command": "hybridly.php.run-current-test-file",
"title": "Run tests in current file",
"category": "Hybridly",
"enablement": "editorLangId == php"
},
{
"command": "hybridly.php.run-directory-tests",
"title": "Run tests in current directory",
"category": "Hybridly"
},
{
"command": "hybridly.php.run-tests",
"title": "Run all tests",
"category": "Hybridly"
}
],
"keybindings": [
{
"key": "cmd+t cmd+c",
"command": "hybridly.php.run-current-test",
"when": "editorLangId == php"
},
{
"key": "cmd+t cmd+f",
"command": "hybridly.php.run-current-test-file",
"when": "editorLangId == php"
},
{
"key": "cmd+t cmd+a",
"command": "hybridly.php.run-tests",
"when": "editorLangId == php"
},
{
"key": "cmd+t cmd+d",
"command": "hybridly.php.run-directory-tests",
"when": "editorLangId == php"
},
{
"key": "f9",
"command": "hybridly.run-previous-tests"
}
],
"problemMatchers": [
{
"name": "pest",
"owner": "php",
"fileLocation": "absolute",
"pattern": [
{
"regexp": "^ (.*)\\.$",
"message": 1
},
{
"regexp": "at (.*):(\\d+)$",
"file": 1,
"line": 2
}
]
}
],
"taskDefinitions": [
{
"type": "tests"
}
]
},
"scripts": {
"build": "tsup src/index.ts",
"dev": "nr build --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"vscode:prepublish": "nr build",
"publish": "vsce publish --no-dependencies",
"pack": "vsce package --no-dependencies",
"test": "nr pack",
"typecheck": "tsc --noEmit",
"release": "bumpp && nr publish"
},
"devDependencies": {
"@antfu/ni": "^0.23.0",
"@innocenzi/eslint-config": "^0.22.4",
"@types/node": "^22.6.0",
"@types/vscode": "1.73.0",
"@vscode/vsce": "^3.1.0",
"bumpp": "^9.5.2",
"eslint": "^9.11.0",
"esno": "^4.7.0",
"pkg-types": "^1.2.0",
"pnpm": "^9.11.0",
"rimraf": "^5.0.10",
"tsup": "^8.3.0",
"typescript": "^5.6.2",
"vite": "^5.4.7",
"vitest": "^2.1.1"
}
}