-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 925 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 925 Bytes
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
{
"name": "chatover",
"version": "1.0.0",
"description": "YouTube live chat overlay extension for Chrome and Firefox",
"type": "module",
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"build:chrome": "cross-env BROWSER=chrome vite build",
"build:firefox": "cross-env BROWSER=firefox vite build",
"lint": "eslint src/**/*.js",
"lint:fix": "eslint src/**/*.js --fix",
"format": "prettier --write \"src/**/*.{js,css,html}\"",
"test": "echo \"No tests yet\" && exit 0"
},
"keywords": [
"youtube",
"live-chat",
"overlay",
"browser-extension",
"chrome-extension",
"firefox-addon"
],
"author": "",
"license": "MIT",
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"prettier": "^3.3.3",
"vite": "^5.4.11"
},
"dependencies": {
"webextension-polyfill": "^0.12.0",
"youtubei.js": "^16.0.1"
}
}