-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.18 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.18 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
{
"name": "bunweb",
"version": "0.5.7",
"description": "A Koa-like web framework for Bun — minimalist, async-first, and built with zero external dependencies.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"docs"
],
"scripts": {
"build": "bunx tsc --project tsconfig.build.json",
"test": "bun test",
"prepublishOnly": "bun run build",
"postinstall": "git config core.hooksPath .githooks || true",
"lint": "bunx eslint src/**/*.ts tests/**/*.ts",
"lint:fix": "bunx eslint --fix src/**/*.ts tests/**/*.ts",
"format": "bunx prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "bunx prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"type-check": "bunx tsc --noEmit",
"setup-hooks": "git config core.hooksPath .githooks"
},
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/bun": "latest",
"eslint": "^9.0.0",
"prettier": "^3.2.5",
"typescript": "^5.9.3",
"typescript-eslint": "^7.0.0"
}
}