-
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.55 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.55 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": "webscrapingboib",
"version": "1.0.0",
"description": "BOIB scraper with keyword/customer matching and email notification",
"type": "module",
"main": "dist/src/main.js",
"packageManager": "pnpm@11.0.0",
"scripts": {
"start": "tsc && node dist/src/main.js",
"dev": "tsc && node --watch dist/src/main.js",
"reset": "rm -f lastBoibInfo.json && rm -rf BOIBpdfs",
"try": "rm -f lastBoibInfo.json && pnpm start",
"typecheck": "tsc --noEmit",
"knip": "knip",
"lint": "biome check src/ tests/",
"lint:fix": "biome check --write --unsafe src/ tests/",
"format": "biome format --write src/ tests/",
"format:check": "biome format src/ tests/",
"audit": "pnpm audit",
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"depcruise": "depcruise src",
"postinstall": "git config core.hooksPath .github/hooks 2>/dev/null; true"
},
"dependencies": {
"axios": "1.17.0",
"cheerio": "1.2.0",
"dotenv": "17.4.2",
"nodemailer": "8.0.10",
"ora": "9.4.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"knip": {
"entry": [
"tests/**/*.test.ts"
],
"project": [
"src/**/*.ts",
"tests/**/*.ts"
]
},
"devDependencies": {
"@biomejs/biome": "2.4.16",
"@types/node": "25.9.2",
"@types/nodemailer": "8.0.0",
"@vitest/coverage-v8": "4.1.8",
"dependency-cruiser": "17.4.3",
"knip": "6.16.1",
"nock": "14.0.15",
"typescript": "6.0.3",
"vitest": "4.1.8"
}
}