-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.12 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": "convert-manifest-format",
"version": "0.6.0",
"author": "Brett Zamir <[email protected]>",
"contributors": [],
"description": "Converts from one v3 Manifest format to another (Chrome or Firefox)",
"type": "module",
"license": "MIT",
"keywords": [
"manifest",
"webextensions"
],
"main": "src/index.js",
"browserslist": [
"cover 100%"
],
"exports": {
"import": "./dist/index-esm.js",
"require": "./dist/index-cjs.cjs",
"default": "./dist/index-esm-browser.js"
},
"bin": "bin/index.js",
"scripts": {
"chrome": "./bin/index.js --chrome",
"firefox": "./bin/index.js --firefox",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/brettz9/convert-manifest-format.git"
},
"bugs": {
"url": "https://github.com/brettz9/convert-manifest-format/issues"
},
"homepage": "https://github.com/brettz9/convert-manifest-format",
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@eslint/js": "^8.39.0",
"eslint": "^8.39.0",
"globals": "^13.20.0"
},
"dependencies": {
"inquirer": "^9.2.12"
}
}