-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
152 lines (150 loc) · 3.84 KB
/
package.json
File metadata and controls
152 lines (150 loc) · 3.84 KB
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
"name": "mautils",
"displayName": "MAutils",
"description": "An extention to go hand to hand with MAutils",
"publisher": "MakersAssemble",
"version": "0.1.1",
"icon": "icons/logo.png",
"engines": {
"vscode": "^1.84.0"
},
"extensionPack": [
"vscjava.vscode-gradle"
],
"extensionDependencies": [
"vscjava.vscode-gradle"
],
"repository": {
"type": "git",
"url": "https://github.com/MA5951/MAutils-Extention"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "MAutils-extention.extension.auto-initiate-Ma",
"title": "MAutils: Auto Initiate MA"
},
{
"command": "MAutils-extention.extension.clone-MAutils",
"title": "MAutils: Clone MAutils"
},
{
"command": "MAutils-extention.extension.initiate-files-from-MAutils",
"title": "MAutils: Initiate files from MAutils"
},
{
"command": "MAutils-extention.extension.pull-updates-to-MAutils",
"title": "MAutils: Pull updates to MAutils"
},
{
"command": "extension.createMAFile",
"title": "Create MA File",
"category": "MAutils"
},
{
"command": "extension.createMAsubsytem",
"title": "Create MA Subsystem",
"category": "MAutils"
},
{
"command": "hardwareInfo.refresh",
"title": "Refresh Hardware Info"
},
{
"command": "extension.createHardwareFile",
"title": "Create Hardware File",
"category": "Hardware"
}
],
"menus": {
"activitybar": [
{
"id": "hardwareInfo",
"title": "Hardware Info",
"icon": "icons/button.png",
"group": "navigation@0",
"submenu": "Hardware"
}
],
"context": [
{
"command": "hardwareInfo.refresh",
"when": "view == hardwareInfo"
}
],
"explorer/context": [
{
"command": "extension.createMAFile",
"when": "explorerResourceIsFolder",
"group": "navigation@0"
} ,
{
"command": "extension.createMAsubsytem",
"when": "explorerResourceIsFolder",
"group": "navigation@0"
}
],
"editor/title/context": [
{
"command": "extension.createMAFile",
"when": "editorLangId == 'java'",
"group": "navigation"
},
{
"command": "extension.createMAsubsytem",
"when": "editorLangId == 'java'",
"group": "navigation"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "hardwareInfo",
"title": "Hardware Info",
"icon": "icons/button.png"
}
]
},
"views": {
"hardwareInfo": [
{
"id": "hardwareInfo",
"name": "Hardware Info",
"webview": true
}
]
}
},
"scripts": {
"vscode:prepublish": "npm 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": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.84.0",
"@types/mocha": "^10.0.3",
"@types/node": "18.x",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.52.0",
"glob": "^10.3.10",
"mocha": "^10.2.0",
"typescript": "^5.2.2",
"ts-loader": "^9.5.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"@vscode/test-electron": "^2.3.6"
}
}