-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
78 lines (78 loc) · 2.46 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
{
"name": "container-tab-groups",
"version": "11.11.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": "^9.11.1",
"@parcel/transformer-typescript-tsc": "^2.12.0",
"@types/diff": "^5.2.2",
"@types/eslint__js": "^8.42.3",
"@types/glob": "^8.1.0",
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.8.4",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.0",
"@types/webextension-polyfill": "^0.12.1",
"addons-linter": "^7.3.0",
"deterministic-zip-ng": "^2.1.1",
"eslint": "^9.11.1",
"glob": "^11.0.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.0.1",
"typedoc": "^0.26.7",
"typescript": "<5.4.0",
"typescript-eslint": "^8.7.0"
},
"dependencies": {
"@menhera/deterministic-json": "^0.1.0",
"@noble/curves": "^1.6.0",
"diff": "^7.0.0",
"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"
]
}