-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.37 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.37 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "container-tab-groups",
"version": "11.13.0",
"description": "Chrome-like tab groups using private and isolated containers: The ultimate tab manager and groups for Firefox.",
"main": "./scripts/index.js",
"type": "module",
"scripts": {
"build-scripts": "rimraf scripts && cd scripts-src && tsc && cd ..",
"build": "npm run clean && npm run build-scripts && eslint . && echo \"ESLint done\" && parcel build && node scripts/build.js",
"clean": "rimraf dist && rimraf .parcel-cache",
"clean-builds": "rimraf builds && rimraf build-metadata",
"test": "node scripts/test.js"
},
"author": "Menhera.org",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@eslint/js": "^10",
"@parcel/transformer-typescript-tsc": "^2.12.0",
"@types/eslint__js": "^9.14.0",
"@types/markdown-it": "^14.1.2",
"@types/node": "^25",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/webextension-polyfill": "^0.12.1",
"addons-linter": "^10",
"deterministic-zip-ng": "^2.1.1",
"eslint": "^10",
"glob": "^13.0",
"markdown-it": "^14.1.0",
"parcel": "^2.12.0",
"parcel-reporter-static-files-copy": "^1.5.3",
"parcel-resolver-ignore": "^2.2.0",
"rimraf": "^6.1.3",
"typedoc": "^0.28",
"typescript": "^5.9.3",
"typescript-eslint": "^8"
},
"dependencies": {
"@menhera/deterministic-json": "^0.1.0",
"@noble/curves": "^2",
"diff": "^8",
"webextension-polyfill": "^0.12.0",
"weeg-containers": "^0.12.0",
"weeg-domains": "^0.10.0",
"weeg-events": "^0.4.0",
"weeg-storage": "^0.6.0",
"weeg-tabs": "^0.19.0",
"weeg-types": "^0.4.0",
"weeg-utils": "^0.11.0"
},
"browserslist": "Firefox >= 102",
"source": [
"src/background/background.html",
"src/content/overrides/content.ts",
"src/content/ext/directory-listing/directory-listing.ts",
"src/pages/cookies/cookies.html",
"src/pages/debugging/debugging.html",
"src/pages/index/index-tab.html",
"src/pages/navigation/confirm.html",
"src/pages/options/options.html",
"src/pages/page-action/page-action.html",
"src/pages/panorama/panorama.html",
"src/pages/popup-v2/popup-v2.html",
"src/pages/navigation/open-container.html"
],
"targets": {
"main": false,
"default": {
"context": "browser"
}
},
"parcelIgnore": [
".*\\.svg",
"react.*\\.js"
]
}