-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 850 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
{
"name": "browser-extension-starter",
"version": "1.0.0",
"description": "This is meant to be a starting point for creating a new browser extension.",
"main": "webpack.common.js",
"scripts": {
"build": "webpack --config webpack.prod.js",
"dev": "webpack -w --config webpack.dev.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chrome": "^0.0.197",
"@types/firefox-webext-browser": "^94.0.1",
"@types/eslint": "^8.4.6",
"@types/node": "^18.7.14",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"eslint": "^8.24.0",
"ts-loader": "^9.4.1",
"typescript": "^4.8.3",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-merge": "^5.8.0"
}
}