-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.09 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.09 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
{
"name": "youtube-tabfs",
"version": "1.2.0",
"description": "YouTube Tab-Fullscreen Extension - Twitch-style fullscreen experience for YouTube videos",
"type": "module",
"scripts": {
"dev": "rollup -c --watch",
"dev:firefox": "rollup -c --watch --environment TARGET:firefox",
"build": "rollup -c --environment NODE_ENV:production",
"build:firefox": "rollup -c --environment NODE_ENV:production,TARGET:firefox",
"build:all": "bun run build && bun run build:firefox",
"lint": "eslint src/**/*.ts"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@playwright/test": "^1.54.2",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.4",
"@types/chrome": "^0.1.1",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.39.0",
"eslint": "^9.32.0",
"globby": "^14.1.0",
"happy-dom": "^18.0.1",
"rollup": "^4.46.2",
"rollup-plugin-copy": "^3.5.0",
"tslib": "^2.8.1",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"license": "MIT",
"author": "YouTube Tab-Fullscreen Team"
}