-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.12 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.12 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
{
"name": "@hyper-hyper/hyper-server",
"version": "0.1.0",
"description": "Simple web server to serve static content built powered by Bun.",
"author": {
"name": "Mikita Stankiewicz",
"email": "itsmikita@gmail.com",
"url": "https://github.com/itsmikita"
},
"private": "true",
"type": "module",
"main": "mod.ts",
"bin": {
"hyper-server": "./bin/hyper-server",
"hsrv": "./bin/srv"
},
"repository": {
"type": "git",
"url": "https://github.com/hyper-hyper/hyper-server.git"
},
"scripts": {
"clean": "rm -rf node_modules bun.lockb bunfig.toml",
"dev": "bun ./src/server.js --hot --port 9090 --root ./src",
"build": "bun build ./src/server.js --compile --minify --outfile bin/hyper-server"
},
"dependencies": {
"@cliffy/ansi": "npm:@jsr/cliffy__ansi@1.0.0-rc.4",
"@cliffy/command": "npm:@jsr/cliffy__command@1.0.0-rc.4",
"@std/net": "npm:@jsr/std__net@0.224.1",
"@types/bun": "^1.1.11",
"bonjour-service": "^1.2.1",
"bun": "^1.1.30",
"deno": "^0.1.1",
"dgram": "^1.0.1",
"node": "^22.11.0",
"pkgroll": "^2.5.0",
"tsx": "^4.19.1"
}
}