-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.38 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
{
"name": "wikihowbot",
"version": "1.0.0",
"description": "a bot that posts random wikihow images to mastodon.",
"author": "s <https://github.com/lostfictions>",
"license": "AGPL-3.0",
"private": true,
"main": "dist/main.js",
"scripts": {
"start": "node --enable-source-maps dist/main.js",
"dev": "NODE_ENV=development ts-node -T src/main.ts -- local",
"build": "rm -rf dist/ && tsc",
"test": "run-p -cl test:*",
"test:ts": "tsc --pretty --noEmit",
"test:lint": "eslint --color 'src/**/*.{mjs,js,ts,jsx,tsx}' --max-warnings=0",
"test:prettier": "prettier 'src/**/*.{mjs,js,ts,jsx,tsx}' -l",
"prettier": "prettier 'src/**/*.{mjs,js,ts,jsx,tsx}' --write"
},
"dependencies": {
"@napi-rs/canvas": "^0.1.63",
"@sentry/integrations": "^7.114.0",
"@sentry/node": "^8.40.0",
"axios": "^1.7.7",
"cheerio": "^1.0.0",
"twoot": "0.4.0",
"wordfilter": "^0.2.6",
"znv": "^0.4.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.17.7",
"dotenv": "^16.4.5",
"eslint": "^8.57.1",
"eslint-config-lostfictions": "^6.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"packageManager": "[email protected]+sha512.faf344af2d6ca65c4c5c8c2224ea77a81a5e8859cbc4e06b1511ddce2f0151512431dd19e6aff31f2c6a8f5f2aced9bd2273e1fed7dd4de1868984059d2c4247"
}