-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.37 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
48
49
{
"name": "netscape-cookies-exporter",
"version": "1.1.1",
"description": "Exports your cookies to the Netscape cookie file format which is compatible with wget, curl, youtube-dl and more.",
"main": "index.js",
"author": {
"name": "Vinny Osiro",
"url": "https://github.com/osiro"
},
"repository": {
"type": "git",
"url": "https://github.com/osiro/netscape-cookies-exporter.git"
},
"bugs": "https://github.com/osiro/netscape-cookies-exporter/issues",
"dependencies": {
"commander": "~>9.0.0",
"inquirer": "~>8.2.0",
"puppeteer": "~>13.4.0"
},
"devDependencies": {
"@types/inquirer": "~>8.2.0",
"@types/node": "~>14.14.31",
"@typescript-eslint/eslint-plugin": "~>5.12.1",
"@typescript-eslint/parser": "~>5.12.1",
"eslint": "~>8.10.0",
"eslint-config-prettier": "~>8.4.0",
"mkdirp": "~>1.0.4",
"prettier": "~>2.5.1",
"prettier-check": "~>2.0.0",
"ts-node": "~>10.5.0",
"ts-node-dev": "~>1.1.8",
"typescript": "~>4.5.5"
},
"engines": {
"node": ">=12.0"
},
"bin": {
"netscape-cookies-exporter": "dist/index.js"
},
"scripts": {
"start": "ts-node-dev src/index.ts",
"build": "tsc",
"watch": "tsc -w",
"eslint": "eslint . --ext .ts",
"prettier:check": "prettier-check \"src/**/*.ts\"",
"test": "npm run eslint && npm run prettier:check"
},
"license": "MIT"
}