-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 2.78 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 2.78 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
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
110
111
112
{
"name": "codebeat",
"displayName": "CodeBeat - Music-Driven Programming",
"description": "A VSCode extension that generates music using AI to match your coding flow",
"version": "1.0.0",
"publisher": "codebeat",
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"title": "CodeBeat",
"properties": {
"codebeat.enabled": {
"type": "boolean",
"default": true,
"description": "Enable/Disable CodeBeat music generation"
},
"codebeat.volume": {
"type": "number",
"default": 50,
"minimum": 0,
"maximum": 100,
"description": "Music volume (0-100%)"
},
"codebeat.celebrationDrops": {
"type": "boolean",
"default": true,
"description": "Enable/disable success celebrations"
},
"codebeat.analysisSensitivity": {
"type": "number",
"default": 2000,
"minimum": 500,
"maximum": 10000,
"description": "How often to analyze code changes (milliseconds)"
},
"codebeat.tandemApiKey": {
"type": "string",
"default": "gk-xUz3DGCo_tgmkl0cszsh",
"description": "Tandemn API key for code analysis"
}
}
},
"commands": [
{
"command": "codebeat.play",
"title": "Play",
"category": "CodeBeat",
"icon": "$(play)"
},
{
"command": "codebeat.stop",
"title": "Stop",
"category": "CodeBeat",
"icon": "$(stop)"
},
{
"command": "codebeat.toggle",
"title": "Toggle CodeBeat",
"category": "CodeBeat"
},
{
"command": "codebeat.celebrateNow",
"title": "Trigger Celebration",
"category": "CodeBeat"
},
{
"command": "codebeat.toggleAudio",
"title": "Toggle Audio Mute/Unmute",
"category": "CodeBeat",
"icon": "$(mute)"
}
],
"keybindings": [
{
"command": "codebeat.toggle",
"key": "ctrl+shift+m",
"mac": "cmd+shift+m",
"when": "editorTextFocus"
},
{
"command": "codebeat.toggleAudio",
"key": "ctrl+shift+a",
"mac": "cmd+shift+a",
"when": "editorTextFocus"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "18.x",
"@types/node-fetch": "^2.6.13",
"@types/vscode": "^1.74.0",
"typescript": "^4.9.4"
},
"dependencies": {
"dotenv": "^16.0.3",
"node-fetch": "^2.6.12"
}
}