-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.21 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.21 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
{
"name": "HolomateMIDIControllerMacros",
"displayName": "Holomate - MIDI Controller Macros",
"description": "Holomate - MIDI Controller Macros",
"version": "0.0.9",
"publisher": "sregusci",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/santicomp2014/holomate-vscode-macro"
},
"engines": {
"vscode": "^1.73.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"commands": [
{
"command": "holomate.holomate",
"title": "Holomate Editor"
}
]
},
"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"
},
"devDependencies": {
"@types/node": "^16.11.7",
"@types/vscode": "^1.73.0",
"@types/vscode-webview": "^1.57.1",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"esbuild": "^0.16.17",
"esbuild-plugin-copy": "^2.0.2",
"eslint": "^8.26.0",
"typescript": "^4.9.4"
},
"dependencies": {
"@vscode/webview-ui-toolkit": "^1.2.1",
"web-midi-api": "^2.2.3"
},
"icon": "icon.png"
}