-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.18 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
{
"name": "voqal-integration",
"displayName": "Voqal",
"description": "Natural speech voice control for the builders of tomorrow",
"icon": "images/pluginIcon.png",
"version": "1.0.2",
"publisher": "voqaldev",
"repository": "https://github.com/voqal/vscode-integration",
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other"
],
"contributes": {
"configuration": {
"type": "object",
"title": "Voqal Integration Settings",
"properties": {
"voqal.websocketUrl": {
"type": "string",
"default": "ws://localhost:22171/integration/vscode",
"description": "The WebSocket URL for Voqal integration."
}
}
}
},
"activationEvents": ["*"],
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint",
"watch": "tsc -watch -p ./",
"package": "vsce package --allow-star-activation"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@stylistic/eslint-plugin": "^2.9.0",
"@types/node": "^20",
"@types/vscode": "^1.73.0",
"@types/ws": "^8.5.13",
"eslint": "^9.13.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.11.0"
},
"dependencies": {
"ws": "^8.16.0"
}
}