-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.64 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
50
51
52
53
54
55
56
{
"name": "@mherod/get-cookie",
"version": "2.1.1",
"description": "Node.js module for querying a local user's Chrome cookie",
"source": "src/index.ts",
"bin": "dist/cli.js",
"main": "dist/index.js",
"types": "dist/types.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "git clean -fdX && rm -rf dist && yarn install",
"tsc": "tsc",
"build": "bun build src/index.ts --target=node --outdir=dist && bun build src/cli.ts --target=node --outdir=dist && tsc --emitDeclarationOnly",
"test": "jest",
"prepublish": "bun run build",
"install:global": "bun run build && npm install --global .",
"prettier": "prettier --write .",
"copy-files": "cp -r src/cli.js dist/cli.js && cp -r src/index.js dist/index.js && cp -r src/types.d.ts dist/types.d.ts"
},
"engines": {
"node": ">= 16"
},
"keywords": [],
"author": "Matthew Herod",
"license": "ISC",
"dependencies": {
"consola": "3.2.3",
"cross-fetch": "^4.0.0",
"destr": "2.0.2",
"fast-glob": "^3.3.1",
"jsonwebtoken": "9.0.0",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"lru-cache": "^7.14.0",
"minimist": "^1.2.7",
"tough-cookie": "^4.1.2"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/bun": "^1.1.3",
"@types/jest": "^29.5.6",
"@types/jsonwebtoken": "^8.5.9",
"@types/lodash": "^4.14.186",
"@types/minimist": "^1.2.2",
"@types/node": "^18.19.34",
"@types/tough-cookie": "^4.0.2",
"@types/user-agents": "^1.0.2",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}