-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.13 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "ovenjoy",
"author": "Shubham Lad <[email protected]>",
"description": "Ovenjoy: Baking Delicious Web Servers with Bun",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"type": "module",
"license": "MIT",
"version": "0.1.0-alpha.1",
"repository": {
"type": "git",
"url": "git+https://github.com/ShuLaPy/ovenjoy.git"
},
"homepage": "https://ovenjoy.shubhamlad.in",
"scripts": {
"dev": "bun --watch examples/http/index.ts",
"build": "bun build.ts && tsc",
"prepublishOnly": "bun run build",
"prepare": "husky install",
"release": "release-it"
},
"files": [
"dist"
],
"keywords": [
"ovenjoy",
"bun",
"framework",
"web",
"server",
"http",
"rest",
"restful",
"router",
"routing",
"app",
"api",
"middleware"
],
"devDependencies": {
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@release-it/conventional-changelog": "^7.0.2",
"bun-types": "latest",
"husky": "^8.0.0",
"release-it": "^16.2.1"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}