forked from m4tr1ck/vscode-livewire-goto
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.47 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
{
"name": "livewire-goto",
"displayName": "Livewire goto",
"description": "Livewire goto vscode extension",
"version": "1.3.0",
"icon": "img/icon.png",
"publisher": "ozair-dev",
"homepage": "https://github.com/ozair-dev/vscode-livewire-goto",
"repository": {
"type": "git",
"url": "https://github.com/ozair-dev/vscode-livewire-goto.git"
},
"engines": {
"vscode": "^1.84.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:php",
"onLanguage:blade"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"type": "object",
"title": "Livewire goto v3 configuration",
"properties": {
"livewire-goto.pathComponents": {
"type": "string",
"default": "/app/Livewire",
"description": "Root path to the Livewire components folder"
}
}
}
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^8.0",
"@types/mocha": "^10.0",
"@types/node": "^20.0",
"@types/vscode": "^1.84.0",
"@typescript-eslint/eslint-plugin": "^6.0",
"@typescript-eslint/parser": "^6.0",
"eslint": "^8.0",
"glob": "^10.0",
"mocha": "^10.2.0",
"typescript": "^5.3",
"vscode-test": "^1.6.0"
}
}