-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
112 lines (112 loc) · 3.28 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "prune",
"displayName": "prune",
"version": "3.4.16",
"description": "A browser extension to help you trim your garden of tabs.",
"author": "theodore brockman",
"license": "GPLv3",
"bugs": {
"url": "https://github.com/tbrockman/prune/issues"
},
"homepage": "https://github.com/tbrockman/prune#readme",
"packageManager": "[email protected]",
"scripts": {
"postinstall": "pnpm install:playwright",
"install:playwright": "npx playwright install --with-deps",
"dev": "plasmo dev",
"dev:firefox": "plasmo dev --target=firefox-mv3",
"clean": "rm -fr build",
"build": "npm-run-all build:safari build:windows",
"build:windows": "npm-run-all build:chrome build:firefox build:edge build:opera",
"build:chrome": "plasmo build --target=chrome-mv3 --zip --hoist",
"build:firefox": "plasmo build --target=firefox-mv3 --zip --hoist",
"build:edge": "plasmo build --target=edge-mv3 --zip --hoist",
"build:safari": "plasmo build --target=safari-mv3 --zip --hoist",
"convert:safari": "cd build && xcrun safari-web-extension-converter safari-mv3-prod",
"build:opera": "plasmo build --target=opera-mv3 --zip --hoist",
"test": "pnpm test:unit && pnpm test:e2e",
"test:unit": "mocha tests/unit/**/* --require mocha-suppress-logs",
"test:e2e": "npx playwright test"
},
"dependencies": {
"@emotion/cache": "^11.13.5",
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^5.16.7",
"@mui/lab": "^5.0.0-alpha.173",
"@mui/material": "^5.16.7",
"@plasmohq/messaging": "^0.6.2",
"@plasmohq/storage": "^1.13.0",
"html-react-parser": "^5.1.18",
"plasmo": "0.89.4",
"react": "18.3.1",
"react-dom": "18.3.1",
"zustand": "^5.0.1"
},
"devDependencies": {
"@plasmohq/prettier-plugin-sort-imports": "4.0.1",
"@playwright/test": "^1.48.2",
"@types/chai": "^5.0.1",
"@types/chrome": "0.0.284",
"@types/mocha": "^10.0.10",
"@types/node": "22.9.3",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/sinon": "^17.0.3",
"chai": "^5.1.2",
"esm": "^3.2.25",
"mocha": "^10.8.2",
"mocha-suppress-logs": "^0.5.1",
"npm-run-all": "^4.1.5",
"prettier": "3.3.3",
"proxyquire": "^2.1.3",
"sinon": "^19.0.2",
"sinon-chrome": "^3.0.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.19.2",
"typescript": "5.6.3"
},
"manifest": {
"permissions": [
"alarms",
"tabs",
"storage",
"bookmarks",
"tabGroups"
],
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
},
"default_locale": "en",
"commands": {
"toggle-deduplicate": {
"suggested_key": {
"default": "Alt+Shift+W",
"mac": "Command+MacCtrl+W"
},
"description": "Toggle tab deduplication feature"
},
"toggle-productivity-mode": {
"suggested_key": {
"default": "Alt+Shift+D",
"mac": "Command+MacCtrl+D"
},
"description": "Toggle productivity mode"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/tbrockman/prune.git"
},
"keywords": [
"prune",
"tabs",
"browser",
"extension",
"browser-extension"
]
}