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
|
{
"name": "buttplug",
"displayName": "buttplug Immersion",
"description": "buttplug.io integration for vscode, providing an immersive haptic coding experience.",
"repository": {
"type": "git",
"url": "https://git.soaos.dev/vscode-buttplug.git"
},
"icon": "icon.jpg",
"version": "0.0.1",
"license": "BSD-0-Clause",
"publisher": "soaos",
"engines": {
"vscode": "^1.108.1"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"title": "Buttplug: ASS BLAST",
"command": "buttplug.assblast"
},
{
"title": "Buttplug: Killswitch",
"command": "buttplug.killswitch"
},
{
"title": "Buttplug: Reconnect",
"command": "buttplug.reconnect"
}
],
"configuration": {
"title": "buttplug",
"type": "object",
"properties": {
"buttplug.strength": {
"title": "Strength",
"description": "Overall strength multiplier of vibrations.",
"type": "number",
"minimum": 0,
"maximum": 1,
"default": 1
},
"buttplug.typingStrength": {
"description": "How strong vibrations induced by editing a document will be.",
"type": "number",
"minimum": 0,
"maximum": 1,
"default": 0.5
},
"buttplug.typingDuration": {
"description": "How long vibrations induced by editing a document will last (in seconds).",
"type": "number",
"minimum": 0,
"default": 0.1
},
"buttplug.buildStrength": {
"description": "How strong vibrations that occur while a build task is running will be.",
"type": "number",
"minimum": 0,
"maximum": 1,
"default": 0.5
},
"buttplug.serverAddress": {
"description": "URL for Intiface Central server websocket connection",
"default": "ws://127.0.0.1:12345"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "22.x",
"@types/vscode": "^1.108.1",
"@vscode/test-cli": "^0.0.12",
"@vscode/test-electron": "^2.5.2",
"eslint": "^9.39.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.52.0"
},
"dependencies": {
"buttplug": "^3.2.2"
}
}
|