-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 899 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
{
"name": "bun-dev-server",
"description": "A simple development server for TypeScript projects using Bun",
"author": "SPWizard01 (https://github.com/SPWizard01/bun-dev-server)",
"repository": {
"type": "git",
"url": "https://github.com/SPWizard01/bun-dev-server"
},
"keywords": [
"bun",
"devserver",
"dev server",
"dev",
"serve",
"server",
"hmr",
"reload",
"hot",
"hot reload"
],
"files": [
"dist"
],
"exports": {
".": "./dist/index.js"
},
"version": "0.9.4",
"module": "index.ts",
"type": "module",
"license": "MIT",
"scripts": {
"build": "bun run ./build.ts"
},
"devDependencies": {
"@types/bun": "^1.2.2"
},
"peerDependencies": {
"typescript": "^5.7.3"
},
"dependencies": {
"@types/ejs": "^3.1.5",
"debounce": "^2.2.0",
"ejs": "^3.1.10",
"picocolors": "^1.1.1"
}
}