-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.57 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
{
"name": "agentara",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"db:generate": "bunx drizzle-kit generate",
"build:bin": "rm -rf dist/bin && bun build index.ts --compile --outfile dist/bin/agentara ",
"build:js": "rm -rf dist/js && bun build ./src/index.ts --outdir ./dist/js --splitting --target bun",
"check": "tsc --noEmit && eslint . --ext .ts",
"check:types": "tsc --noEmit",
"clean:data": "rm -rf user-home/data && rm -rf user-home/sessions",
"dev": "concurrently \"bun run dev:server\" \"bun run dev:web\"",
"dev:server": "bun run index.ts",
"dev:web": "cd web && bun run dev",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"@types/bun": "latest",
"drizzle-kit": "^0.31.9",
"drizzle-zod": "^0.8.3",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import-x": "^4.16.1",
"husky": "^9.1.7",
"lint-staged": "^16.3.2",
"prettier": "^3.8.1",
"typescript-eslint": "^8.56.1"
},
"peerDependencies": {
"typescript": "^5"
},
"lint-staged": {
"*.ts": "eslint --max-warnings=0 --no-warn-ignored"
},
"dependencies": {
"@hono/zod-validator": "^0.7.6",
"@larksuiteoapi/node-sdk": "^1.59.0",
"bunqueue": "^2.6.26",
"concurrently": "^9.2.1",
"dayjs": "^1.11.19",
"drizzle-orm": "^0.45.1",
"eventemitter3": "^5.0.4",
"hono": "^4.12.5",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"uuid": "^13.0.0"
}
}