-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 1.08 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
{
"name": "webpack-webextension",
"version": "2.0.0",
"description": "A minimal example of how to use npm modules from within a WebExtension.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack --mode=development",
"build": "webpack",
"watch": "webpack --mode=development --watch --progress",
"package": "web-ext build --source-dir=./addon",
"sign": "web-ext sign --source-dir=./addon --api-key=$API_KEY --api-secret=$API_SECRET",
"start:firefox": "web-ext run ---source-dir=./addon"
},
"license": "MPL-2.0",
"devDependencies": {
"@types/firefox-webext-browser": "^94.0.1",
"@types/node": "^17.0.33",
"@types/web": "^0.0.117",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"raw-loader": "^4.0.2",
"ts-loader": "^9.3.0",
"typescript": "^4.6.4",
"web-ext": "^6.8.0",
"webpack": "^5.0.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"axios": "^0.27.2",
"buffer": "^6.0.3",
"process": "^0.11.10",
"stream-browserify": "^3.0.0"
}
}