-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.74 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.74 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
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
{
"name": "nzbunity",
"version": "2.1.2",
"license": "MPL-2.0",
"description": "Send and control NZB files directly with SABnzbd or NZBGet download clients.",
"author": "tumblfeed@gmail.com",
"keywords": [
"NZB"
],
"repository": {
"type": "git",
"url": "https://github.com/tumblfeed/nzbunity"
},
"homepage": "https://github.com/tumblfeed/nzbunity",
"bugs": {
"url": "https://github.com/tumblfeed/nzbunity/issues"
},
"type": "module",
"scripts": {
"start": "npm run dev",
"dev": "wxt",
"dev:firefox": "wxt -b firefox",
"build": "wxt build",
"build:firefox": "wxt build -b firefox",
"build:all": "wxt build && wxt build -b firefox",
"zip": "wxt zip --sources",
"zip:firefox": "wxt zip -b firefox",
"zip:all": "wxt zip --sources && wxt zip -b firefox",
"compile": "tsc --noEmit",
"test": "vitest run --mode test",
"test:watch": "vitest --mode test",
"postinstall": "wxt prepare",
"compose": "docker compose -f test/docker/docker-compose.yaml",
"compose:sabnzbd": "npm run compose -- up sabnzbd",
"compose:nzbget": "npm run compose -- up nzbget",
"compose:clean": "rm -rf test/docker/sabnzbd/Downloads/*; rm -rf test/docker/nzbget/downloads/*"
},
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.5.0",
"react-tooltip": "^5.28.0"
},
"devDependencies": {
"@types/chrome": "^0.0.309",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@wxt-dev/module-react": "^1.1.3",
"happy-dom": "^17.4.4",
"typescript": "^5.8.2",
"vitest": "^3.0.8",
"wxt": "^0.19.29"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"printWidth": 90,
"tabWidth": 2
}
}