-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 932 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
26
27
28
29
30
31
32
{
"name": "preact-chrome-extension",
"version": "1.0.0",
"description": "Scaffolding for a Chrome extension built with [Preact](https://preactjs.com).",
"main": "index.js",
"scripts": {
"start:firefox": "web-ext run -s dist/firefox -t firefox-desktop",
"start:chromium": "web-ext run -s dist/chromium -t chromium",
"build": "webpack"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/plugin-transform-react-jsx": "^7.12.17",
"@babel/preset-env": "^7.13.10",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"copy-webpack-plugin": "^8.0.0",
"ts-loader": "^8.0.18",
"typescript": "^4.2.3",
"web-ext": "^6.0.0",
"webextension-polyfill-ts": "^0.25.0",
"webpack": "^5.27.1",
"webpack-cli": "^4.5.0"
},
"dependencies": {
"preact": "^10.5.13",
"preact-jsx-runtime": "^1.2.0"
}
}