-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
93 lines (93 loc) · 2.5 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
{
"name": "inertia",
"displayName": "Inertia.js",
"version": "0.4.3",
"description": "Visual Studio Code extension for Inertia.js",
"categories": [
"Other"
],
"keywords": [
"inertia",
"inertiajs",
"laravel",
"vue"
],
"repository": {
"type": "git",
"url": "https://github.com/nhedger/vscode-inertia.git"
},
"license": "MIT",
"author": {
"name": "Nicolas Hedger",
"email": "nicolas@hedger.ch"
},
"publisher": "nhedger",
"main": "./out/node/extension.js",
"browser": "./out/node/extension.js",
"scripts": {
"build": "tsup",
"watch": "tsup --watch",
"format": "rome format --write .",
"lint": "rome check .",
"package": "vsce package"
},
"contributes": {
"configuration": [
{
"title": "Inertia.js",
"properties": {
"inertia.pagesFolder": {
"type": "string",
"default": "resources/js/Pages",
"description": "Root folder of your applications' pages. The path is relative to the root of the workspace.",
"deprecationMessage": "Discontinued in favor of the inertia.pages setting."
},
"inertia.pages": {
"type": "string",
"default": "resources/js/Pages/**/*.vue",
"description": "A glob pattern to match the Vue components that you use as pages in your Inertia application. The root folder of your components is inferred from the glob pattern."
},
"inertia.pathSeparators": {
"type": "array",
"items": {
"type": "string"
},
"default": [
"/"
],
"markdownDescription": "The allowed path separators for component names.\n\n**This setting only affects how the extension resolves the component paths and autocompletion, and you must ensure that you Inertia setup handles them as well.**\n\n**When using autocompletion, component names will be shown with the first path separator.**"
},
"inertia.defaultExtension": {
"type": "string",
"default": ".vue",
"description": "The default file extension to use when generating hyperlinks to components that do not yet exist on the filesystem."
}
}
}
]
},
"activationEvents": [
"workspaceContains:**/*Inertia*",
"onLanguage:php"
],
"dependencies": {
"vscode-uri": "^3.0.7"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/vscode": "^1.73.0",
"@vscode/vsce": "^2.20.0",
"rome": "^12.1.3",
"tsup": "^7.1.0"
},
"engines": {
"vscode": "^1.73.0"
},
"icon": "inertia.png",
"galleryBanner": {},
"preview": true,
"vsce": {
"dependencies": false,
"qna": "marketplace"
}
}