fbi-proxy 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,9 @@
1
+ volumes:
2
+ caddy_data:
3
+ services:
4
+ fbi-proxy:
5
+ build: .
6
+ image: snomiao/fbi-proxy
7
+ volumes:
8
+ - caddy_data:/etc/caddy/data
9
+ network_mode: host
package/package.json ADDED
@@ -0,0 +1,36 @@
1
+ {
2
+ "name": "fbi-proxy",
3
+ "module": "ts/cli.ts",
4
+ "type": "module",
5
+ "devDependencies": {
6
+ "@types/bun": "latest",
7
+ "semantic-release": "^22.0.0",
8
+ "@semantic-release/changelog": "^6.0.3",
9
+ "@semantic-release/git": "^10.0.1",
10
+ "@semantic-release/github": "^9.2.0"
11
+ },
12
+ "peerDependencies": {
13
+ "typescript": "^5"
14
+ },
15
+ "dependencies": {
16
+ "@types/minimist": "^1.2.5",
17
+ "caddy-baron": "^3.0.2",
18
+ "get-port": "^7.1.0",
19
+ "hot-memo": "^1.1.1",
20
+ "minimist": "^1.2.8",
21
+ "phpdie": "^1.7.0",
22
+ "rustup": "^1.0.10"
23
+ },
24
+ "scripts": {
25
+ "build-cli": "bun build ts/cli.ts --outdir dist",
26
+ "build": "bun run build:rs && bun run build:ts",
27
+ "build:ts": "bun build ./ts/*.ts --outdir dist --target node --declaration",
28
+ "build:rs": "cd rs && cargo build --release",
29
+ "dev": "bun --hot ts/cli.ts",
30
+ "start": "bun ts/cli.ts"
31
+ },
32
+ "bin": {
33
+ "fbi-proxy": "ts/cli.ts"
34
+ },
35
+ "version": "1.0.0"
36
+ }
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,5 @@
1
+ [target.aarch64-unknown-linux-gnu]
2
+ linker = "aarch64-linux-gnu-gcc"
3
+
4
+ [target.x86_64-unknown-linux-gnu]
5
+ linker = "gcc"