-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
42 lines (42 loc) · 1.33 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
{
"name": "open-in-new-tab",
"version": "0.0.13",
"description": "Open links in new tab for a list of specified domains. Useful for sites such as hackernews",
"main": "background.js",
"directories": {
"doc": "docs"
},
"scripts": {
"watch": "webpack --watch",
"chromium": "npm run watch & chromium-browser --load-extension=.",
"opera": "npm run watch & opera --load-extension=.",
"firefox": "npm run watch & web-ext run",
"production": "webpack --mode production && web-ext build -i package.json webpack.config.js src docs .gitignore README.md .git .history node_modules yarn.lock"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ramkumar-kr/open-in-new-tab.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ramkumar-kr/open-in-new-tab/issues"
},
"homepage": "https://github.com/ramkumar-kr/open-in-new-tab#readme",
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"babel-core": "^6.24.1",
"babel-loader": "^8.2.2",
"babel-preset-react": "^6.24.1",
"copy-webpack-plugin": "^9.0.1",
"html-webpack-plugin": "^5.3.2",
"webpack": "^5.57.1",
"webpack-cli": "^4.9.0"
}
}