-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.02 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
{
"name": "mastodon-auto-reply-bot",
"version": "0.1.0",
"description": "A Mastodon Bot to automatically reply to statuses that match the given filters.",
"repository": "https://github.com/ouuan/mastodon-keyword-reply-bot",
"author": "Yufan You <[email protected]> (https://github.com/ouuan)",
"license": "Apache-2.0",
"private": true,
"main": "dist/index.mjs",
"bin": "dist/index.mjs",
"scripts": {
"lint:nofix": "eslint . --ignore-path .gitignore --ext .ts",
"lint": "pnpm lint:nofix --fix",
"build": "unbuild",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"async": "3.2.6",
"masto": "6.10.1",
"sleep-promise": "9.1.0",
"ts-exhaustive-check": "1.0.0",
"yaml": "2.6.1",
"zod": "3.24.1",
"zod-validation-error": "3.4.0"
},
"devDependencies": {
"@ouuan/eslint-config-ts": "1.3.0",
"@ouuan/tsconfig-base": "1.3.0",
"@types/async": "3.2.24",
"@types/node": "20.17.10",
"eslint": "8.57.1",
"typescript": "5.7.2",
"unbuild": "2.0.0"
}
}