-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.32 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
{
"name": "codesharp",
"displayName": "Codesharp",
"description": "CodeSharp - A VSCode extension for creating C# files with ease. Generate classes, interfaces, structs, and more with just a click.",
"version": "0.0.7",
"license": "MIT",
"publisher": "AdedoyinEmmanuel",
"icon": "./images/logo.png",
"author": {
"name": "Adedoyin Emmanuel Adeniyi",
"email": "[email protected]",
"url": "https://codesharp.adedoyin.dev"
},
"repository": {
"type": "git",
"url": "https://github.com/adedoyin-emmanuel/codesharp"
},
"engines": {
"vscode": "^1.94.0"
},
"categories": [
"Programming Languages",
"Snippets",
"Keymaps"
],
"activationEvents": [
"onLanguage:csharp",
"onLanguage:aspnetcorerazor",
"onLanguage:razor"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "codesharp.createClass",
"title": "Create A New C# Class"
},
{
"command": "codesharp.createInterface",
"title": "Create A New C# Interface"
},
{
"command": "codesharp.createRecord",
"title": "Create A New C# Record"
},
{
"command": "codesharp.createEnum",
"title": "Create A New C# Enum"
},
{
"command": "codesharp.createStruct",
"title": "Create A New C# Struct"
}
],
"menus": {
"explorer/context": [
{
"submenu": "codesharp.newFileSubMenu",
"group": "navigation@1",
"when": "resourceLangId == csharp || resourceLangId == aspnetcorerazor || resourceExtname == .cs || resourceExtname == .cshtml || resourceExtname == .razor || resourceFilename == global.json || resourceFilename =~ /.*\\.csproj$/ || resourceFilename == dotnet-tools.json || resourceExtname == .sln || explorerResourceIsFolder"
}
],
"codesharp.newFileSubMenu": [
{
"command": "codesharp.createClass",
"group": "1_create"
},
{
"command": "codesharp.createInterface",
"group": "1_create"
},
{
"command": "codesharp.createRecord",
"group": "1_create"
},
{
"command": "codesharp.createEnum",
"group": "1_create"
},
{
"command": "codesharp.createStruct",
"group": "1_create"
}
]
},
"submenus": [
{
"id": "codesharp.newFileSubMenu",
"label": "New C# File"
}
]
},
"scripts": {
"compile": "npm run check-types && node esbuild.js",
"check-types": "tsc --noEmit",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"vscode:prepublish": "npm run package",
"package": "standard-version && git push && npm run check-types && node esbuild.js --production"
},
"devDependencies": {
"@types/mocha": "^10.0.8",
"@types/node": "20.x",
"@types/vscode": "^1.94.0",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"esbuild": "^0.24.0",
"eslint": "^9.11.1",
"standard-version": "^9.5.0",
"typescript": "^5.6.2"
},
"dependencies": {
"find-up-glob": "^1.0.0"
}
}