-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.98 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.98 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "ejnet",
"version": "0.1.0",
"author": "Efahn Joe",
"license": "MIT",
"description": "Safer, modern, fast web server for bun.",
"keywords": [
"ejnet",
"express",
"route",
"router",
"bun",
"typescript",
"server"
],
"homepage": "https://github.com/efahnjoe/ejnet#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/efahnjoe/ejnet.git"
},
"bugs": "https://github.com/efahnjoe/ejnet/issues",
"main": "lib/index.mjs",
"type": "module",
"types": "lib/index.d.ts",
"scripts": {
"format": "prettier --write .",
"lint": "eslint --cache .",
"typecheck": "tsc --noEmit -p tsconfig.json",
"build": "bun run typecheck && bun-build --lib --ignore types --src src --out lib",
"test": "bun test",
"clean": "rimraf node_modules/.tmp",
"prepare": "husky",
"commit": "commit",
"publish": "npm publish --access public"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@types/debug": "^4.1.12",
"@types/express": "^5.0.3",
"fast-glob": "^3.3.3",
"fs-extra": "^11.3.0",
"merge-descriptors": "^2.0.0",
"parseurl": "^1.3.3",
"path-to-regexp": "^8.2.0"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-angular": "^20.0.0",
"@commitlint/config-conventional": "^20.0.0",
"@commitlint/prompt-cli": "^20.0.0",
"@eslint/js": "^10.0.1",
"@types/bun": "^1.2.23",
"@types/finalhandler": "^1.2.4",
"@types/fs-extra": "^11.0.4",
"@types/parseurl": "^1.3.3",
"@types/supertest": "^7.2.0",
"bun-build-tools": "^1.4.3",
"debug": "^4.4.3",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"finalhandler": "^2.1.0",
"husky": "^9.1.7",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"run-series": "^1.1.9",
"supertest": "^7.1.4",
"typescript-eslint": "^8.45.0"
},
"peerDependencies": {
"typescript": "latest"
}
}