-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.48 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.48 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
{
"name": "xangi-dev",
"version": "0.1.0",
"description": "Discord bot with Claude Code CLI integration",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node --env-file=.env dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write src/",
"format:check": "prettier --check src/",
"typecheck": "tsc --noEmit",
"prepare": "husky"
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix",
"prettier --write"
],
"{src,tests}/**/*.ts": [
"bash -c 'npx vitest run'",
"bash -c 'npx tsc --noEmit'"
]
},
"keywords": [
"ai",
"agent",
"discord",
"claude-code"
],
"author": "karaage",
"license": "MIT",
"dependencies": {
"@slack/bolt": "^4.6.0",
"discord.js": "^14.16.3",
"node-cron": "^4.2.1",
"yaml": "^2.6.1"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^22.10.5",
"@types/node-cron": "^3.0.11",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.54.0",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=22.0.0"
}
}