This repository has been archived by the owner on Dec 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 3.29 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
{
"name": "project-explorer",
"displayName": "Project Explorer",
"description": "An extension for searching and creating page and layout files in a Next.js application project.",
"publisher": "monstajoedev",
"icon": "logo.png",
"version": "0.3.0",
"engines": {
"vscode": "^1.84.0"
},
"categories": [
"Other"
],
"repository": {
"type": "git",
"url": "https://github.com/monstajoe2002/project-explorer.git"
},
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "project-explorer",
"title": "Project Explorer",
"icon": "resources/project-explorer-treeview.svg"
}
]
},
"views": {
"project-explorer": [
{
"id": "projectExplorer.pages",
"name": "Pages"
},
{
"id": "projectExplorer.layouts",
"name": "Layouts"
},
{
"id": "projectExplorer.activeEditors",
"name": "Active Editors"
}
]
},
"commands": [
{
"command": "project-explorer.search",
"title": "Project Explorer: Search Next.js Files"
},
{
"command": "project-explorer.create",
"title": "Project Explorer: New Next.js File"
},
{
"command": "project-explorer.delete",
"title": "Project Explorer: Delete Next.js File"
},
{
"command": "project-explorer.tree.refresh",
"icon": "$(refresh)",
"title": "Refresh"
},
{
"command": "project-explorer.tree.delete",
"title": "Delete",
"icon": "$(trash)"
},
{
"command": "project-explorer.tree.rename",
"title": "Rename",
"icon": "$(pencil)"
}
],
"menus": {
"view/title": [
{
"command": "project-explorer.tree.refresh",
"when": "view == projectExplorer.pages || view == projectExplorer.layouts || view == projectExplorer.activeEditors",
"group": "navigation"
}
],
"view/item/context": [
{
"command": "project-explorer.tree.delete",
"when": "view == projectExplorer.pages || view == projectExplorer.layouts",
"group": "inline"
},
{
"command": "project-explorer.tree.rename",
"when": "view == projectExplorer.pages || view == projectExplorer.layouts",
"group": "inline"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test",
"deploy:patch": "vsce publish patch",
"deploy:minor": "vsce publish minor",
"deploy:major": "vsce publish major"
},
"devDependencies": {
"@types/mocha": "^10.0.3",
"@types/node": "~18.18.9",
"@types/vscode": "^1.84.0",
"@types/web": "^0.0.120",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"@vscode/test-cli": "^0.0.4",
"@vscode/test-electron": "^2.3.6",
"eslint": "^8.52.0",
"glob": "^10.3.10",
"mocha": "^10.2.0",
"typescript": "^5.2.2"
},
"dependencies": {
"ts-pattern": "^5.0.8"
}
}