-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 862 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 862 Bytes
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
{
"name": "best-code-comments-api",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "bun run build && bun --hot src/index.ts",
"dev-vercel": "vc dev",
"build": "bun run scripts/build-comments.ts",
"scrape-so-folder": "bun run scripts/scrape-stackoverflow.ts --folder html/stackoverflow",
"scrape-so-url": "bun run scripts/scrape-stackoverflow.ts --url https://stackoverflow.com/questions/184618"
},
"dependencies": {
"hono": "^4.8.9",
"lodash-es": "^4.17.21",
"playwright": "^1.55.0",
"sharp": "^0.34.4"
},
"devDependencies": {
"@types/bun": "latest",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.11.17",
"@types/sharp": "^0.32.0",
"cheerio": "^1.1.2",
"csv-parse": "^5.5.0",
"csv-stringify": "^6.4.0",
"node-fetch": "^3.3.2",
"typescript": "^5.8.3"
}
}