2024-09-30 01:49:30 +00:00
|
|
|
{
|
|
|
|
"name": "chat-app",
|
|
|
|
"scripts": {
|
2024-10-01 01:58:44 +00:00
|
|
|
"dev": "bun run --hot src/index.ts",
|
2024-10-05 02:57:21 +00:00
|
|
|
"build": "rm -r static/js && bun build.ts"
|
2024-09-30 01:49:30 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-10-01 01:58:44 +00:00
|
|
|
"@types/mithril": "^2.2.7",
|
|
|
|
"hono": "^4.6.3",
|
2024-10-05 02:57:21 +00:00
|
|
|
"js-cookie": "^3.0.5",
|
|
|
|
"js-guid": "^1.0.2",
|
2024-10-01 01:58:44 +00:00
|
|
|
"mithril": "^2.2.5"
|
2024-09-30 01:49:30 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/bun": "latest"
|
|
|
|
}
|
2024-10-01 01:58:44 +00:00
|
|
|
}
|