-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.12 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
{
"name": "browser-devtools",
"displayName": "Player ui devtools",
"version": "0.1.4",
"description": "Player UI devtools browser extension",
"author": "Rafael Campos <[email protected]>",
"scripts": {
"dev": "plasmo dev",
"build:chrome": "plasmo build",
"build:firefox": "plasmo build --target=firefox-mv2",
"package": "plasmo package",
"inject:css": "scripts/inject-css.sh",
"build": "pnpm build:chrome && pnpm build:firefox && pnpm inject:css",
"test": "plasmo test",
"inject:chrome": "pnpm build:chrome && pnpm inject:css && web-ext run -t chromium --start-url \"https://example.com\" --source-dir ./build/chrome-mv3-prod",
"inject:firefox": "pnpm build:firefox && pnpm inject:css && pnpm web-ext run --start-url \"about:debugging#/runtime/this-firefox\" --source-dir ./build/firefox-mv2-prod",
"release": "./scripts/release.sh"
},
"dependencies": {
"@auto-it/chrome": "^11.1.6",
"@auto-it/git-tag": "^11.1.6",
"@auto-it/version-file": "^11.1.6",
"@plasmohq/storage": "^1.10.0",
"@player-tools/devtools-client": "0.9.0-next.0",
"@player-tools/devtools-types": "0.9.0-next.0",
"@player-ui/pubsub-plugin": "0.7.2-next.4",
"@player-ui/react": "0.7.2-next.4",
"dequal": "^2.0.3",
"dset": "^3.1.3",
"immer": "^10.0.3",
"plasmo": "0.84.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-error-boundary": "^4.0.12",
"sharp": "^0.33.5",
"tiny-uid": "^1.1.2"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.1.1",
"@types/chrome": "0.0.251",
"@types/node": "20.9.0",
"@types/react": "18.2.37",
"@types/react-dom": "18.2.15",
"@types/webextension-polyfill": "^0.10.7",
"auto": "^11.1.6",
"install": "^0.13.0",
"npm": "^10.8.1",
"prettier": "3.0.3",
"typescript": "5.2.2",
"web-ext": "^7.9.0",
"webextension-polyfill": "^0.10.0"
},
"manifest": {
"host_permissions": [
"https://*/*"
],
"permissions": [
"clipboardWrite",
"storage"
],
"browser_specific_settings": {
"gecko": {
"id": "$FIREFOX_EXT_ID"
}
}
}
}