-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 945 Bytes
/
package.json
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": "link.pulsate.dev",
"module": "index.ts",
"type": "module",
"packageManager": "[email protected]",
"private": true,
"author": {
"name": "Pulsate",
"email": "[email protected]",
"url": "https://pulsate.dev"
},
"scripts": {
"dev": "bun run src/index.ts",
"start": "bun run build/index.js",
"build": "bun build --entrypoints ./src/index.ts --outdir ./build --target bun",
"format": "bunx @biomejs/biome format --write ./src",
"lint": "bunx @biomejs/biome lint ./src",
"check": "bunx @biomejs/biome check ./src",
"check:apply": "bunx @biomejs/biome check --apply ./src",
"check:type": "tsc --noEmit",
"postinstall": "lefthook install"
},
"dependencies": {
"hono": "^4.1.3",
"lefthook": "^1.6.7"
},
"devDependencies": {
"@biomejs/biome": "1.5.3",
"@types/bun": "^1.0.10",
"wrangler": "^3.36.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}