-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 721 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 721 Bytes
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
{
"name": "profilator",
"module": "src/index.ts",
"type": "module",
"private": true,
"scripts": {
"dev": "bun --config=.config/bunfig.toml --hot --watch .",
"start": "wrangler dev",
"deploy": "wrangler deploy",
"format": "prettier --config .config/.prettierrc --write ."
},
"imports": {
"#utils": "./src/utils.ts",
"#types/*": "./types/*"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260501.1",
"@types/bun": "latest",
"prettier": "^3.8.3",
"wrangler": "^4.87.0"
},
"peerDependencies": {
"typescript": "^5.9.3"
},
"dependencies": {
"hono": "^4.12.16"
}
}