summaryrefslogtreecommitdiffhomepage
path: root/packages/api/package.json
blob: deea9f631ea96f8f2b7b0b19fa82ae2f608ae368 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
	"name": "@dispatch/api",
	"version": "0.0.1",
	"private": true,
	"type": "module",
	"main": "src/index.ts",
	"scripts": {
		"dev": "bun --watch src/index.ts",
		"test": "vitest run",
		"test:watch": "vitest",
		"typecheck": "tsc --noEmit"
	},
	"dependencies": {
		"hono": "^4.0.0",
		"@dispatch/core": "workspace:*"
	},
	"devDependencies": {
		"@types/bun": "latest"
	}
}