-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.52 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.52 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
{
"name": "voice-commands",
"displayName": "Voice Commands",
"description": "Listen to the user's voice commands",
"homepage": "https://github.com/lanly-dev/VSCode-VoiceCommands",
"version": "2.1.2",
"publisher": "lanly-dev",
"engines": {
"vscode": "^1.42.0"
},
"categories": [
"Other"
],
"keywords": [
"Voice",
"Command",
"Speech Recognition"
],
"icon": "icon/voicecmd3.png",
"activationEvents": [
"*"
],
"main": "./dist/extension.js",
"contributes": {},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"lint": "eslint . --ext ts",
"lint-fix": "eslint . --ext ts --fix",
"task-clean": "ts-node tasks.ts clean"
},
"devDependencies": {
"@types/node": "^13.7.1",
"@types/shelljs": "^0.8.6",
"@types/vscode": "^1.42.0",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"copy-webpack-plugin": "^5.1.1",
"eslint": "^6.8.0",
"shelljs": "^0.8.3",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.2",
"typescript": "^3.7.5",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
},
"repository": {
"type": "git",
"url": "https://github.com/lanly-dev/VSCode-VoiceCommands-Extension.git"
},
"bugs": {
"url": "https://github.com/lanly-dev/VSCode-VoiceCommands/issues"
},
"license": "MIT",
"dependencies": {}
}