-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.16 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
{
"name": "credential-extractor-js",
"version": "0.0.1",
"private": true,
"main": "dist/index.js",
"files": [
"dist"
],
"os": [
"darwin",
"linux",
"win32"
],
"repository": {
"type": "git",
"url": "https://github.com/TextsHQ/credential-extractor-js.git"
},
"dependencies": {
"int": "^0.2.0",
"request": "^2.88.0",
"sqlite3": "^5.0.7",
"tldjs": "^1.5.1",
"tough-cookie": "^2.3.4",
"better-sqlite3": "8.2.0",
"lz4": "^0.6.5"
},
"optionalDependencies": {
"keytar": "^7.9.0",
"win-dpapi": "^1.1.0"
},
"devDependencies": {
"@types/joi": "^14.3.1",
"joi": "^14.3.1",
"@textshq/eslint-config": "https://github.com/TextsHQ/eslint-config#main",
"@types/eslint": "^8.4.10",
"@types/node": "^17.0.35",
"eslint": "^8.30.0",
"http-proxy": "^1.18.1",
"jest": "^22.2.2",
"typescript": "^5.0.2",
"yargs": "^10.0.3"
},
"engines": {
"node": ">=12.18.4"
},
"type": "module",
"scripts": {
"prepack": "yarn build",
"build": "yarn tsc",
"lint": "yarn eslint src --ext ts,tsx,js,jsx --cache",
"test": "jest"
},
"packageManager": "[email protected]"
}