-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.51 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.51 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
{
"name": "dev-recorder",
"displayName": "DevRecorder — Session Recorder",
"description": "Record your entire coding session: keystrokes, mouse, terminal, browser, audio, video.",
"version": "0.1.0",
"publisher": "devrecorder",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "devrecorder.openPanel",
"title": "DevRecorder: Open Control Panel"
},
{
"command": "devrecorder.startRecording",
"title": "DevRecorder: Start Recording"
},
{
"command": "devrecorder.stopRecording",
"title": "DevRecorder: Stop Recording"
},
{
"command": "devrecorder.pauseRecording",
"title": "DevRecorder: Pause Recording"
}
],
"keybindings": [
{
"command": "devrecorder.openPanel",
"key": "ctrl+shift+r",
"mac": "cmd+shift+r"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "eslint src --ext ts"
},
"dependencies": {
"http-proxy": "^1.18.1",
"sql.js": "^1.14.0",
"uuid": "^9.0.1",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/http-proxy": "^1.17.14",
"@types/node": "^20.11.0",
"@types/uuid": "^9.0.7",
"@types/vscode": "^1.85.0",
"@types/ws": "^8.5.10",
"typescript": "^5.3.3"
}
}