-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.73 KB
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
{
"name": "ot_notifier",
"version": "1.0.0",
"type": "module",
"main": "index.js",
"scripts": {
"start": "tsx --tsconfig tsconfig.json src/application/orchestrator.ts",
"dev": "tsx watch --tsconfig tsconfig.json src/application/orchestrator.ts",
"manage": "tsx --tsconfig tsconfig.json src/cli/index.ts",
"type-check": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"test": "vitest"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"axios": "^1.11.0",
"axios-cookiejar-support": "^6.0.4",
"axios-retry": "^4.5.0",
"bottleneck": "^2.19.5",
"boxen": "^8.0.1",
"chalk": "^5.6.2",
"cheerio": "^1.1.2",
"dotenv": "^17.2.1",
"gradient-string": "^3.0.0",
"log-update": "^7.2.0",
"p-limit": "^7.2.0",
"playwright": "^1.56.1",
"proper-lockfile": "^4.1.2",
"quick-lru": "^7.3.0",
"rate-limiter-flexible": "^8.2.1",
"tough-cookie": "^6.0.0",
"tsx": "^4.20.6",
"user-agents": "^1.1.669"
},
"devDependencies": {
"@types/gradient-string": "^1.1.6",
"@types/node": "^24.2.0",
"@types/proper-lockfile": "^4.1.4",
"@types/user-agents": "^1.0.4",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.48.1",
"@vitest/coverage-v8": "^4.0.10",
"@vitest/ui": "^4.0.10",
"eslint": "^9.39.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"happy-dom": "^20.0.10",
"prettier": "^3.7.4",
"typescript": "^5.9.2",
"vitest": "^4.0.10"
}
}