-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1009 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "@kakengloh/bagel",
"version": "0.2.2",
"author": {
"name": "KaKeng Loh",
"email": "[email protected]",
"url": "https://github.com/kakengloh"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"bun-types": "^0.4.0",
"eslint": "^8.23.0",
"prettier": "^2.7.1",
"sinon": "^15.0.1",
"typescript": "^4.8.2"
},
"description": "Tiny and expressive web framework for Bun.js",
"repository": {
"type": "git",
"url": "https://github.com/kakengloh/bagel"
},
"keywords": [
"bun",
"framework",
"express",
"web",
"http",
"rest",
"restful",
"router",
"app",
"api",
"typescript"
],
"license": "MIT",
"dependencies": {
"path-to-regexp": "^6.2.1"
},
"scripts": {
"prepublish": "tsc",
"build": "tsc"
}
}