-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.06 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
{
"name": "headlinebot",
"version": "0.0.4",
"bin": {
"headlinebot": "dist/index.js"
},
"engines": {
"node": ">= 16"
},
"author": "Matt Hinz <[email protected]>",
"license": "CC0-1.0",
"files": [
"dist/**/*.js"
],
"devDependencies": {
"@types/cheerio": "^0.22.31",
"@types/prettier": "^2.7.2",
"@types/sanitize-html": "^2.8.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.332.0",
"@slack/web-api": "^6.8.1",
"cheerio": "^1.0.0-rc.12",
"date-fns": "^2.29.3",
"dotenv": "^16.0.3",
"feed": "^4.2.2",
"openai": "^3.2.1",
"prettier": "^2.8.4",
"puppeteer": "^19.7.3",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"sanitize-html": "^2.10.0",
"sqlite": "^4.1.2",
"sqlite3": "^5.1.6",
"zod": "^3.21.4"
},
"scripts": {
"build": "yarn clean && tsc",
"clean": "rm -rf dist",
"start": "node dist/index.js",
"test": "node --loader ts-node/esm --test $(find src -name '*.test.ts')"
}
}