-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.13 KB
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
48
49
50
51
52
{
"name": "@requestly/modheader-export-backup",
"version": "1.0.0",
"description": "Export ModHeader profiles from browser storage into ModHeader's own JSON format, for import into Requestly",
"scripts": {
"test": "node test/e2e-golden.mjs",
"start": "node src/cli.mjs"
},
"author": "Requestly (https://requestly.io)",
"license": "MIT",
"type": "module",
"dependencies": {
"classic-level": "^3.0.0"
},
"bin": {
"modheader-export-backup": "src/cli.mjs",
"modheader-export": "src/cli.mjs"
},
"engines": {
"node": ">=20"
},
"files": [
"src",
"README.md",
"LICENSE"
],
"homepage": "https://github.com/requestly/modheader-export-backup#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/requestly/modheader-export-backup.git"
},
"bugs": {
"url": "https://github.com/requestly/modheader-export-backup/issues"
},
"keywords": [
"modheader",
"requestly",
"http-headers",
"export",
"backup",
"chrome-extension",
"leveldb"
],
"os": [
"darwin",
"linux",
"win32"
],
"publishConfig": {
"access": "public"
}
}