-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
109 lines (109 loc) · 2.43 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
{
"name": "voice-assistant",
"displayName": "Voice Assistant",
"description": "Voice assistant extension for Visual Studio Code.",
"version": "0.1.2",
"publisher": "b4rtaz",
"engines": {
"vscode": "^1.45.1"
},
"activationEvents": [
"onView:dashboard"
],
"repository": "https://github.com/b4rtaz/voice-assistant.git",
"main": "dist/extension.js",
"icon": "media/icon.png",
"contributes": {
"configuration": [
{
"title": "Voice Assistant",
"properties": {
"voiceSnippets.serverHost": {
"type": "string",
"default": "localhost",
"description": "Server host (need to restart the editor)",
"scope": "window"
},
"voiceSnippets.serverPort": {
"type": "number",
"default": "9999",
"description": "Server port (need to restart the editor)",
"scope": "window"
}
}
}
],
"viewsContainers": {
"activitybar": [
{
"id": "dashboard",
"title": "Voice Assistant",
"icon": "media/icon-mic-white.svg"
}
]
},
"views": {
"dashboard": [
{
"id": "dashboard",
"name": "Voice Assistant",
"icon": "media/icon-mic-white.svg",
"contextualTitle": "dashboard"
}
]
},
"commands": [
{
"command": "voiceAssistant.reloadDefinition",
"title": "Reload definition"
},
{
"command": "voiceAssistant.addExampleJson",
"title": "Add example voice-assistant.json"
}
],
"menus": {
"view/title": [
{
"command": "voiceAssistant.reloadDefinition",
"when": "view == dashboard",
"group": "navigation"
}
],
"view/item/context": [
{
"command": "voiceAssistant.addExampleJson",
"when": "view == dashboard && viewItem == noDefinition",
"group": "inline"
}
]
}
},
"scripts": {
"vsce:package": "webpack && vsce package",
"build": "webpack",
"build:watch": "webpack --watch",
"lint": "eslint src/ --ext .ts,.tsx",
"pretest": "tsc -p ./",
"test": "mocha out/**/*.spec.js",
"vscode:test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/ws": "^7.4.4",
"@typescript-eslint/eslint-plugin": "^4.16.0",
"@typescript-eslint/parser": "^4.16.0",
"@types/node": "^12.12.0",
"@types/vscode": "^1.45.1",
"@types/mocha": "^8.2.2",
"eslint": "^7.21.0",
"typescript": "^4.2.2",
"vsce": "^1.91.0",
"mocha": "^8.4.0",
"ts-loader": "^9.2.2",
"webpack": "^5.37.1",
"webpack-cli": "^4.7.0"
},
"dependencies": {
"ws": "^7.4.6"
}
}