-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 3.26 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": "header-wizard",
"displayName": "HeaderWizard",
"description": "A simple extension that adds the ability to add headers template that are automatically added when creating a file.",
"author": "4c65736975",
"publisher": "4c65736975",
"pricing": "Free",
"version": "1.0.1",
"icon": "icon.png",
"license": "SEE LICENSE IN LICENSE",
"categories": [
"Other"
],
"homepage": "https://github.com/4c65736975/headerWizard",
"repository": {
"type": "git",
"url": "https://github.com/4c65736975/headerWizard.git"
},
"bugs": {
"url": "https://github.com/4c65736975/headerWizard/issues"
},
"sponsor": {
"url": "https://github.com/sponsors/4c65736975"
},
"engines": {
"vscode": "^1.87.0"
},
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "node ./esbuild.js",
"package": "SET NODE_ENV=production & node ./esbuild.js",
"watch": "node ./esbuild.js --watch",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test"
},
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"commands": [
{
"command": "headerWizard.createTemplate",
"title": "Header Wizard: Create a template",
"icon": "$(add)"
},
{
"command": "headerWizard.activeTemplate",
"title": "Header Wizard: Active a template",
"icon": "$(check)"
},
{
"command": "headerWizard.deleteTemplate",
"title": "Header Wizard: Delete a template",
"icon": "$(trash)"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "headerWizard",
"title": "Header Wizard",
"icon": "$(symbol-parameter)"
}
]
},
"views": {
"headerWizard": [
{
"id": "headerWizard.templates",
"name": "My Templates",
"type": "tree",
"visibility": "visible"
}
]
},
"viewsWelcome": [
{
"view": "headerWizard.templates",
"contents": "No templates yet!\n[Create a template](command:headerWizard.createTemplate)"
}
],
"menus": {
"view/title": [
{
"command": "headerWizard.createTemplate",
"when": "view == headerWizard.templates",
"group": "navigation@1"
}
],
"view/item/context": [
{
"command": "headerWizard.activeTemplate",
"when": "view == headerWizard.templates",
"group": "inline"
},
{
"command": "headerWizard.deleteTemplate",
"when": "view == headerWizard.templates",
"group": "inline"
}
]
}
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/uuid": "^9.0.8",
"@types/vscode": "^1.87.0",
"@types/vscode-webview": "^1.57.5",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vscode/test-cli": "^0.0.6",
"@vscode/test-electron": "^2.3.9",
"esbuild": "^0.20.2",
"esbuild-plugin-copy": "^2.1.1",
"eslint": "^8.56.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@vscode/webview-ui-toolkit": "^1.4.0",
"uuid": "^9.0.1"
}
}