forked from BackendStack21/0http-bun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.29 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
52
53
54
55
56
57
58
{
"name": "@saltfish/fish-router",
"version": "0.1.0",
"description": "a fork of 0http for Bun",
"main": "index.ts",
"scripts": {
"lint": "bun eslint --fix",
"format": "bun prettier . --write"
},
"dependencies": {
"fast-querystring": "^1.1.2",
"regexparam": "^3.0.0",
"trouter": "^4.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SaltFish001/0http-bun.git"
},
"files": [
"LICENSE",
"README.md",
"index.ts",
"lib/"
],
"devDependencies": {
"@types/bun": "^1.1.13",
"@types/node": "^22.9.1",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"bun-types": "^1.1.36",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"mitata": "^0.1.14",
"prettier": "^3.3.3"
},
"keywords": [
"http",
"server",
"rest",
"api",
"web",
"bun"
],
"author": "Rolando Santamaria Maso <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SaltFish001/0http-bun/issues"
},
"homepage": "https://github.com/SaltFish001/0http-bun#readme",
"peerDependencies": {
"typescript": "^5.6.3"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
}
}