-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
65 lines (65 loc) · 2.49 KB
/
package.json
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
{
"name": "youtube-popout-player",
"title": "YouTube Popout Player",
"version": "5.0.0",
"description": "This browser extension provides simple ways to open any YouTube video or playlist (including videos and playlists embedded in other sites/pages) in a configurable \"popout\" window that can be freely sized and/or positioned.",
"author": "Ryan Thaut <[email protected]> (https://ryan.thaut.me)",
"homepage": "https://rthaut.github.io/YouTubePopoutPlayer/",
"license": "GPL-3.0",
"private": true,
"scripts": {
"lint": "eslint ./app/",
"dev": "webextension-toolbox dev --config webextension-toolbox.config.js",
"build": "webextension-toolbox build --config webextension-toolbox.config.js",
"build:icons": "node scripts/generate-icons",
"start:chrome": "web-ext run --source-dir=./dist/chrome/ --target chromium",
"start:firefox": "web-ext run --source-dir=./dist/firefox/ --target firefox-desktop",
"start:firefox:nr": "npm run start:firefox -- --no-reload",
"test": "npm run lint && npm run test:firefox",
"test:firefox": "npm run build firefox && web-ext lint --source-dir=./dist/firefox/",
"docs": "npm-run-all docs:build --parallel docs:serve docs:watch",
"docs:build": "cd docs && bundle exec jekyll build",
"docs:watch": "cd docs && bundle exec jekyll build --watch",
"docs:serve": "browser-sync docs/_site -w --extensions html --no-notify"
},
"repository": {
"type": "git",
"url": "git://https://github.com/rthaut/YouTubePopoutPlayer.git"
},
"bugs": {
"url": "https://github.com/rthaut/YouTubePopoutPlayer/issues"
},
"browserslist": [
"chrome >= 90.0",
"edge >= 91.0",
"firefox >= 109.0"
],
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^5.16.7",
"@mui/lab": "^5.0.0-alpha.173",
"@mui/material": "^5.16.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-use": "^17.5.1",
"webextension-polyfill": "^0.12.0",
"zustand": "^4.5.5"
},
"devDependencies": {
"@babel/preset-react": "^7.25.7",
"@webextension-toolbox/webextension-toolbox": "^6.2.0",
"browser-sync": "^3.0.3",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"sharp": "^0.33.5",
"trash-cli": "^6.0.0",
"web-ext": "^8.3.0"
}
}