forked from baptistecdr/aria2-integration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.32 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
{
"name": "aria2-integration",
"private": true,
"type": "module",
"version": "4.10.4-SNAPSHOT.0",
"scripts": {
"lint": "biome check",
"lint:fix": "biome check --fix --unsafe",
"build:firefox": "tsc && vite build --emptyOutDir && BROWSER=firefox node scripts/generate-manifest.js",
"build:firefox:debug": "tsc && NODE_ENV=development vite build --mode development --emptyOutDir && BROWSER=firefox node scripts/generate-manifest.js",
"build:firefox:watch": "nodemon --watch . --exec npm run build:firefox:debug",
"start:firefox": "web-ext run --source-dir ./dist/ --devtools",
"build:chromium": "tsc && vite build --emptyOutDir && BROWSER=chromium node scripts/generate-manifest.js",
"build:chromium:debug": "tsc && NODE_ENV=development vite build --mode development --emptyOutDir && BROWSER=chromium node scripts/generate-manifest.js",
"build:chromium:watch": "nodemon --watch . --exec npm run build:chromium:debug",
"start:chromium": "web-ext run --source-dir ./dist/ -t chromium --devtools"
},
"dependencies": {
"@baptistecdr/aria2": "5.0.2",
"@stdlib/regexp-basename-posix": "0.2.2",
"@stdlib/regexp-basename-windows": "0.2.3",
"@stdlib/regexp-dirname-posix": "0.2.1",
"@stdlib/regexp-dirname-windows": "0.2.1",
"@testing-library/react": "16.1.0",
"@testing-library/user-event": "14.5.2",
"bootstrap": "5.3.3",
"bootstrap-icons": "1.11.3",
"class-transformer": "0.5.1",
"filesize": "10.1.6",
"luxon": "3.5.0",
"path": "0.12.7",
"react": "19.0.0",
"react-bootstrap": "2.10.7",
"react-dom": "19.0.0",
"reflect-metadata": "0.2.2",
"uuid": "11.0.5",
"webextension-polyfill": "0.12.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bootstrap": "5.2.10",
"@types/jest": "29.5.14",
"@types/luxon": "3.4.2",
"@types/node": "22.10.5",
"@types/react": "19.0.4",
"@types/react-bootstrap": "0.32.37",
"@types/react-dom": "19.0.2",
"@types/uuid": "10.0.0",
"@types/webextension-polyfill": "0.12.1",
"@vitejs/plugin-react": "4.3.4",
"nodemon": "3.1.9",
"typescript": "5.7.3",
"vite": "6.0.7",
"vite-plugin-node-polyfills": "0.22.0",
"vite-tsconfig-paths": "5.1.4",
"web-ext": "8.3.0"
},
"overrides": {
"vite-plugin-node-polyfills": {
"vite": "6.0.7"
}
}
}