-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.61 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.61 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
{
"name": "vibe-scroll",
"displayName": "Vibe Scroll: Instagram Reels Viewer",
"description": "Scroll Instagram Reels while you code",
"icon": "images/icon.png",
"publisher": "coflint",
"repository": {
"type": "git",
"url": "https://github.com/RyanPCo/vibe-scroll.git"
},
"license": "MIT",
"version": "1.0.0",
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Themes", "Other"
],
"keywords": [
"Instagram", "Reels", "Vibe", "Video", "Entertainment", "Social Media", "Fun", "Break"
],
"activationEvents": [
"onCommand:instagramReels.scroll"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "instagramReels.scroll",
"title": "Instagram Reels",
"category": "Vibe Scroll"
}
],
"keybindings": [
{
"command": "instagramReels.scroll",
"key": "ctrl+alt+i",
"mac": "alt+cmd+i",
"when": "!terminalFocus"
}
],
"menus": {
"commandPalette": [
{
"command": "instagramReels.scroll",
"title": "Vibe Scroll: Instagram Reels"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"dependencies": {
"cookie": "^0.5.0",
"express": "^4.18.2",
"loudness": "^0.4.2",
"puppeteer": "^21.11.0",
"ws": "^8.14.2"
},
"devDependencies": {
"@types/cookie": "^0.5.4",
"@types/express": "^4.17.21",
"@types/node": "16.x",
"@types/vscode": "^1.74.0",
"@types/ws": "^8.5.10",
"typescript": "^4.9.4"
}
}