-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.32 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.32 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
{
"name": "css-debug-with-pesticide",
"description": "A browser extension for debugging CSS by outlining elements.",
"private": true,
"version": "0.0.13",
"type": "module",
"author": "Rob Lloveras",
"license": "MIT",
"scripts": {
"dev": "wxt",
"dev:firefox": "wxt -b firefox",
"build": "wxt build",
"build:firefox": "wxt build -b firefox",
"zip": "wxt zip",
"zip:firefox": "wxt zip -b firefox",
"compile": "tsc --noEmit",
"postinstall": "wxt prepare",
"wtx-init": "wxt submit init",
"wtx-submit": "wxt submit",
"firefox-submit-dry-run": "wxt submit --dry-run --firefox-zip .output/css-debug-with-pesticide-0.0.13-firefox.zip --firefox-sources-zip .output/css-debug-with-pesticide-0.0.13-sources.zip",
"firefox-submit": "wxt submit --firefox-zip .output/css-debug-with-pesticide-0.0.13-firefox.zip --firefox-sources-zip .output/css-debug-with-pesticide-0.0.13-sources.zip"
},
"dependencies": {
"@radix-ui/react-icons": "^1.3.1",
"@radix-ui/react-switch": "^1.1.1",
"@radix-ui/themes": "^3.1.5",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/chrome": "^0.0.269",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@wxt-dev/module-react": "^1.1.1",
"typescript": "^5.6.2",
"wxt": "^0.19.11"
}
}