-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·128 lines (128 loc) · 4.61 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
{
"name": "laravel-goto-controller",
"displayName": "Laravel Goto Controller",
"description": "Quick jump to controller",
"version": "0.6.9",
"publisher": "ctf0",
"engines": {
"vscode": "^1.80.0"
},
"repository": "https://github.com/ctf0/laravel-goto-controller",
"icon": "images/logo.png",
"categories": [
"Other"
],
"keywords": [
"PHP",
"Laravel",
"goto",
"file navigation"
],
"activationEvents": [
"workspaceContains:composer.json",
"onLanguage:php",
"onLanguage:blade",
"workspaceContains:artisan"
],
"main": "./out/main",
"contributes": {
"commands": [
{
"command": "lgc.addAppUrl",
"title": "Add App Url",
"category": "Laravel GoTo Controller"
}
],
"configuration": {
"type": "object",
"title": "Laravel Goto Controller",
"properties": {
"laravelGotoController.classmap_file": {
"type": "string",
"default": "vendor/composer/autoload_classmap.php",
"description": "the composer classmap file path (from project root)"
},
"laravelGotoController.showRouteCompletion": {
"type": "boolean",
"default": true,
"description": "show route names autocomplete suggestion"
},
"laravelGotoController.routeMethods": {
"type": "array",
"default": [
"route",
"tenant_route",
"action",
"Route::has",
"Route::is"
],
"items": {
"type": "string"
},
"minItems": 1,
"uniqueItems": true,
"description": "routes methods to match"
},
"laravelGotoController.ignoreControllers": {
"type": "array",
"default": [
"App\\\\Http\\\\Controllers\\\\Controller"
],
"items": {
"type": "string"
},
"minItems": 1,
"uniqueItems": true,
"description": "don't match this controllers classes"
},
"laravelGotoController.methodSeparator": {
"type": "array",
"default": [
"@",
"::"
],
"items": {
"type": "string"
},
"minItems": 1,
"uniqueItems": true,
"description": "characters that separate the controller from action\n\nex.'FooController@method'"
},
"laravelGotoController.phpCommand": {
"type": "string",
"default": "php",
"description": "the php command path (any quotes needs to be escaped)"
},
"laravelGotoController.routeListCommand": {
"type": "string",
"default": "artisan route:list --columns=uri,name,action,method --json",
"description": "the route list cmnd (any quotes needs to be escaped)"
},
"laravelGotoController.dockerVolumePath": {
"type": "string",
"default": "/var/www/html",
"description": "if using docker, this should be the main container volume path (defaults to laravel/sail)"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run esbuild-base -- --pure:console.log --minify",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"watch": "npm run esbuild"
},
"devDependencies": {
"@types/node": "^22.5.0",
"@types/vscode": "^1.80.0",
"esbuild": "^0.23.1",
"typescript": "^5.5.4"
},
"dependencies": {
"escape-string-regexp": "^5.0.0",
"execa": "^9.3.1",
"lodash.debounce": "^4.0.8",
"php-parser": "^3.1.5"
}
}