-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.34 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.34 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
{
"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",
"type": "module",
"scripts": {
"start": "NODE_ENV=production node --experimental-strip-types src/main.ts",
"dev": "NODE_ENV=development node --experimental-strip-types src/main.ts -- local",
"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.69",
"@sentry/node": "^9.12.0",
"axios": "^1.8.4",
"cheerio": "^1.0.0",
"twoot": "0.5.0",
"wordfilter": "^0.2.6",
"znv": "^0.5.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.14.1",
"dotenv": "^16.5.0",
"eslint": "^9.24.0",
"eslint-config-lostfictions": "^7.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.3",
"typescript": "^5.8.3"
},
"packageManager": "pnpm@10.8.0+sha512.0e82714d1b5b43c74610193cb20734897c1d00de89d0e18420aebc5977fa13d780a9cb05734624e81ebd81cc876cd464794850641c48b9544326b5622ca29971"
}