Skip to content

Commit 7cb70ab

Browse files
committed
🎉 feat: Finished the demo version of the library
1 parent 96fab2d commit 7cb70ab

12 files changed

+1021
-7
lines changed

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1+
cookie.json
12
node_modules
2-
lib/**/*
3+
lib/**/*
4+
.DS_Store

package.json

+14-2
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,33 @@
44
"description": "",
55
"main": "lib/index.js",
66
"scripts": {
7-
"dev": "ts-node src/",
8-
"build": "tsc"
7+
"dev": "ts-node src/index.ts",
8+
"build": "tsc",
9+
"start": "node lib/index.js"
910
},
1011
"keywords": [],
1112
"author": "",
1213
"license": "ISC",
1314
"devDependencies": {
15+
"@types/argparse": "^2.0.10",
16+
"@types/chalk": "^2.2.0",
1417
"@types/node": "^18.15.11",
18+
"@types/tough-cookie": "^4.0.2",
1519
"@types/uuid": "^9.0.1",
20+
"@types/ws": "^8.5.4",
1621
"prettier": "^2.8.7",
1722
"ts-node": "^10.9.1",
1823
"typescript": "^5.0.3"
1924
},
2025
"dependencies": {
26+
"argparse": "^2.0.1",
2127
"axios": "^1.3.4",
28+
"axios-cookiejar-support": "^4.0.6",
29+
"chalk": "^4.1.2",
30+
"ora": "^5.4.1",
31+
"rxjs": "^7.8.0",
32+
"socks-proxy-agent": "^7.0.0",
33+
"tough-cookie": "^4.1.2",
2234
"uuid": "^9.0.0",
2335
"ws": "^8.13.0"
2436
}

0 commit comments

Comments
 (0)