-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.75 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.75 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "hexbot",
"version": "0.5.0",
"type": "module",
"description": "Modular IRC bot written in TypeScript",
"main": "src/index.ts",
"scripts": {
"start": "tsx --env-file-if-exists=config/bot.env src/index.ts",
"dev": "tsx --env-file-if-exists=config/bot.env src/index.ts --repl",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"lint": "eslint .",
"build": "tsc",
"typecheck": "tsc --noEmit",
"check": "pnpm build:plugins && tsc --noEmit && eslint . && vitest run",
"format": "prettier --write .",
"format:check": "prettier --check .",
"build:plugins": "tsx scripts/build-plugins.ts",
"scaffold": "tsx scripts/scaffold-plugin.ts",
"preview:banner": "tsx scripts/preview-banner.ts",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{js,json,md,yml,yaml}": [
"prettier --write"
]
},
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">=24.0.0"
},
"license": "GPL-2.0",
"dependencies": {
"@google/generative-ai": "^0.24.1",
"better-sqlite3": "^12.8.0",
"chalk": "^5.6.2",
"irc-framework": "^4.14.0",
"tsx": "^4.21.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.4",
"eslint": "^10.2.0",
"husky": "^9.1.7",
"ipaddr.js": "^2.3.0",
"lint-staged": "^16.4.0",
"prettier": "^3.8.2",
"rss-parser": "^3.13.0",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.1",
"vite": "^8.0.8",
"vitest": "^4.1.4"
}
}