-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.58 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
57
58
59
60
61
62
63
64
65
66
{
"name": "gtc-js",
"version": "0.0.6",
"description": "Unofficial GetContact API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"format": "prettier --write .",
"prebuild": "rimraf dist",
"build": "tsc",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sooluh/gtc-js.git"
},
"keywords": [
"getcontact",
"getcontact-api"
],
"author": {
"name": "Abu Masyail",
"url": "https://suluh.my.id",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/sooluh/gtc-js/issues"
},
"homepage": "https://github.com/sooluh/gtc-js#readme",
"prettier": {
"trailingComma": "es5",
"semi": false,
"singleQuote": true,
"useTabs": false,
"quoteProps": "consistent",
"bracketSpacing": true,
"arrowParens": "always",
"printWidth": 100
},
"devDependencies": {
"@types/node": "^20.11.19",
"@types/qrcode-terminal": "^0.12.2",
"@types/random-useragent": "^0.3.3",
"@types/tough-cookie": "^4.0.5",
"@types/tough-cookie-file-store": "^2.0.4",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
},
"dependencies": {
"axios-cookiejar-support": "^5.0.0",
"jimp": "^0.22.12",
"jsqr": "^1.4.0",
"puppeteer": "^22.2.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"qrcode-terminal": "^0.12.0",
"random-useragent": "^0.5.0",
"tough-cookie": "^4.1.3",
"tough-cookie-file-store": "^2.0.3"
}
}