-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.53 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
{
"name": "svelte-matey",
"version": "0.0.4",
"repository": {
"type": "git",
"url": "https://github.com/Bewinxed/svelte-matey.git"
},
"main": "./dist/extension.js",
"devDependencies": {
"@types/mocha": "^10.0.3",
"@types/node": "20.x",
"@types/vscode": "*",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"@vscode/test-electron": "^2.3.6",
"eslint": "^8.52.0",
"glob": "^10.3.10",
"mocha": "^10.2.0",
"ts-loader": "^9.5.0",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"activationEvents": [
"onLanguage:Svelte",
"onLanguage:Sveltekit"
],
"categories": [
"Other"
],
"contributes": {
"commands": [
{
"command": "svelte-matey.helloWorld",
"title": "Hello World"
},
{
"command": "nodeDependencies.refreshEntry",
"title": "Refresh",
"icon": {
"light": "resources/light/refresh.svg",
"dark": "resources/dark/refresh.svg"
}
},
{
"command": "svelte-matey.openAllSubItems",
"category": "Custom",
"title": "Open all files in the route",
"icon": "$(folder-opened)"
},
{
"command": "svelte-matey.createRouteFiles",
"category": "Custom",
"title": "Creates all files for a route",
"icon": "$(file-directory-create)"
}
],
"views": {
"explorer": [
{
"id": "svelteRoutes",
"name": "Svelte Routes"
}
]
},
"menus": {
"view/item/context": [
{
"when": "viewItem == folder",
"command": "svelte-matey.openAllSubItems",
"group": "inline"
},
{
"when": "viewItem == folder",
"command": "svelte-matey.createRouteFiles",
"group": "inline"
}
]
}
},
"description": "Effortless Sveltekit Navigation & Tools!",
"displayName": "svelte-matey",
"engines": {
"vscode": "^1.84.0"
},
"icon": "resources/icons/dark/page.png",
"publisher": "bewinxed",
"scripts": {
"vscode:prepublish": "pnpm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "pnpm run compile-tests && pnpm run compile && pnpm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
}
}