-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
97 lines (97 loc) · 3.52 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "outside-youtube-player-bar",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/1natsu172/Outside-YouTube-Player-Bar.git"
},
"version": "4.1.6",
"description": "Display YouTube's control bar outside the video.",
"scripts": {
"postinstall": "wxt prepare",
"formatlint": "biome check --write ./src",
"predev": "echo \"FIXME: support concurrently exec watch\" && hcm 'src/**/*.module.css' --cache=true",
"dev": "wxt",
"dev:arc": "pnpm run dev -b arc -c ./wxt.config.arc.ts",
"dev:chrome": "pnpm run dev -b chrome",
"dev:edge": "pnpm run dev -b edge",
"dev:firefox": "pnpm run dev -b firefox",
"build": "pnpm run --sequential /^build:.*/",
"build:chrome": "wxt build -b chrome",
"build:edge": "wxt build -b edge",
"build:firefox": "wxt build -b firefox",
"zip": "pnpm run --sequential /^zip:.*/",
"zip:chrome": "wxt zip -b chrome",
"zip:edge": "wxt zip -b edge",
"zip:firefox": "wxt zip -b firefox",
"test": "echo \"NOTE: ignore run e2e\" && pnpm run --sequential /^test:\\(?!e2e$\\).*/",
"test:unit": "vitest",
"test:e2e": "playwright test",
"test:types": "echo \"NOTE: must use ignoreSourceErrors because vitest use generated temp-tsconfig at root. This causes path-shift b/w .wxt's tsconfig and root tsconfig.\" && vitest --typecheck.only --typecheck.tsconfig tsconfig.json --typecheck.ignoreSourceErrors",
"preversion": "CI=true pnpm run test",
"postversion": "git push origin v$npm_new_version",
"release-to-git": "node ./scripts/releaseNotesTemplate.mjs | gh release create v$npm_package_version --notes-file - && gh release view v$npm_package_version --web",
"delivery": "pnpm run --sequential /^delivery:.*/",
"delivery:chrome": "wxt submit --chrome-zip .output/*-$npm_package_version-chrome.zip",
"delivery:firefox": "wxt submit --firefox-zip .output/*-$npm_package_version-firefox.zip --firefox-sources-zip .output/*-$npm_package_version-sources.zip",
"delivery:edge": "wxt submit --edge-zip .output/*-$npm_package_version-edge.zip"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@playwright/test": "1.49.1",
"@sentry/types": "8.47.0",
"@testing-library/react": "16.1.0",
"@types/node": "22.10.5",
"@types/postcss-import": "14.0.3",
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2",
"@types/semver": "7.5.8",
"@vitejs/plugin-react": "4.3.4",
"git-semver-tags": "8.0.0",
"happy-css-modules": "3.2.0",
"happy-dom": "16.3.0",
"playwright": "1.49.1",
"postcss": "8.4.49",
"postcss-import": "16.1.0",
"postcss-nesting": "13.0.1",
"rollup-preserve-directives": "1.1.3",
"typescript": "5.7.2",
"vite-plugin-svgr": "4.3.0",
"vitest": "2.1.8",
"wxt": "0.19.23"
},
"dependencies": {
"@1natsu/wait-element": "4.1.2",
"@mantine/core": "^7.10.2",
"@mantine/hooks": "^7.10.2",
"@sentry/browser": "^8.11.0",
"@sentry/core": "^8.42.0",
"@sentry/react": "^8.12.0",
"@sentry/utils": "^8.42.0",
"@sentry/vite-plugin": "^2.20.1",
"@tabler/icons-react": "^3.6.0",
"@tanstack/react-query": "^5.45.1",
"@webext-core/messaging": "^2.0.2",
"async-mutex": "^0.5.0",
"consola": "^3.2.3",
"defu": "^6.1.4",
"derive-valtio": "^0.2.0",
"mabiki": "^1.0.1",
"p-retry": "^6.2.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-error-boundary": "^5.0.0",
"semver": "^7.6.2",
"valtio": "^2.0.0",
"valtio-history": "^1.0.0"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"semver@>=7.0.0 <7.5.2": ">=7.5.2",
"semver@<5.7.2": ">=5.7.2",
"semver@>=6.0.0 <6.3.1": ">=6.3.1"
}
}
}