-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.18 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.18 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
{
"name": "chui",
"version": "0.0.25",
"module": "src/index.tsx",
"type": "module",
"private": true,
"scripts": {
"dev": "CHUI_DEV_SESSION_SCOPE=$(date +%s%N) bun run --watch src/index.ts",
"lint": "bun run scripts/verify-renderables-only.ts && oxlint .",
"test": "bun test",
"test:composer": "bun test tests/message_composer.layout.test.ts",
"test:composer:loop": "for i in {1..25}; do bun run test:composer || exit 1; done",
"check": "bun run lint && bun run build",
"build": "bun build src/index.ts --target=bun --minify --sourcemap --outdir dist/bundle",
"bump": "bun run scripts/bump-version.ts",
"release": "bun run scripts/release.ts",
"convex:dev": "bun x convex dev",
"auth:generate-schema": "bun x @better-auth/cli generate --config ./convex/betterAuth/auth.ts --output ./convex/betterAuth/schema.ts",
"prepare": "husky"
},
"devDependencies": {
"@types/bun": "^1.3.9",
"husky": "^9.1.7",
"oxlint": "^1.49.0"
},
"peerDependencies": {
"typescript": "^5.9.3"
},
"dependencies": {
"@convex-dev/better-auth": "0.10.10",
"@opentui/core": "^0.1.80",
"better-auth": "1.4.18",
"convex": "1.32.0"
}
}