-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
47 lines (47 loc) · 1.35 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
43
44
45
46
47
{
"name": "multiple-paste-and-go-button",
"version": "2.6.3",
"description": "This add-on provides a button to open multiple URLs from clipboard.",
"keywords": [
"button",
"jetpack",
"paste",
"tab",
"toolbar"
],
"homepage": "https://github.com/wantora/multiple-paste-and-go-button",
"repository": {
"type": "git",
"url": "https://github.com/wantora/multiple-paste-and-go-button.git"
},
"license": "MIT",
"author": "wantora",
"scripts": {
"build": "npm run clean && npm run build:js && npm run build:ext",
"build:ext": "web-ext build --source-dir dist",
"build:js": "webpack --mode production",
"clean": "rimraf dist",
"format": "sort-package-json && eslint --fix .",
"lint": "web-ext lint --source-dir dist && eslint .",
"start": "web-ext run --source-dir dist",
"version": "node ./scripts/version.js",
"watch": "webpack --mode development --watch"
},
"dependencies": {
"events": "^3.3.0"
},
"devDependencies": {
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-webpack-plugin": "^3.2.0",
"glob": "^8.0.3",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"sort-package-json": "^1.57.0",
"web-ext": "^7.2.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}