-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 980 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 980 Bytes
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
{
"name": "proxytoggle",
"version": "3.0.0",
"description": "Firefox Extension for switching proxy settings",
"main": "",
"scripts": {
"start": "concurrently \"npm:web:run\" \"npm:build:rollup:watch\"",
"web:run": "web-ext run --firefox=firefoxdeveloperedition",
"build": "npm run build:rollup && npm run build:web-ext",
"build:rollup": "rollup --config",
"build:rollup:watch": "rollup --config -w",
"build:web-ext": "web-ext build --overwrite-dest --ignore-files='src' rollup.config.js package.json package-lock.json"
},
"author": "Pieterv24",
"license": "MIT",
"dependencies": {
"@lion/button": "^0.18.1",
"@lion/checkbox-group": "^0.21.1",
"@lion/core": "^0.24.0",
"@lion/form-core": "^0.18.3",
"@lion/input": "^0.18.0",
"@lion/radio-group": "^0.21.1"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.4",
"concurrently": "^9.0.1",
"rollup": "^4.22.4",
"web-ext": "^8.3.0"
}
}