-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
25 lines (25 loc) · 979 Bytes
/
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
{
"name": "responsivo",
"version": "0.0.6",
"description": "A web extension. Displays multiple view widths at once.",
"scripts": {
"web-ext": "npx web-ext run -s .",
"watch": "npx esbuild app.tsx --outdir=. --bundle --watch & npx esbuild background.ts --outdir=. --bundle --watch",
"build": "esbuild app.tsx --bundle --outdir=. && esbuild background.ts --bundle --outdir=.",
"package": "mkdir -p out && cp app.js background.js 128.png manifest.json LICENSE.txt out/ && cd out/ && npx web-ext build"
},
"author": "Michael Lill <[email protected]>",
"license": "MIT",
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"@types/webextension-polyfill": "^0.8.0",
"esbuild": "^0.12.15",
"web-ext": "^7.1.0",
"webextension-polyfill": "^0.8.0"
}
}