-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.07 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.07 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
{
"name": "github-redirect",
"version": "2.1.0",
"module": "src/index.tsx",
"type": "module",
"scripts": {
"build": "bun run build:bundle",
"build:bundle": "bun build --target bun --format esm --minify --outdir ./dist/ ./src/index.tsx",
"build:standalone": "bun build --compile --target bun --format esm --minify --outfile ./dist/ghrd ./src/index.tsx",
"start": "NODE_ENV=production bun src/index.tsx",
"dev": "NODE_ENV=development bun --hot src/index.tsx",
"production:build": "bun run build:standalone",
"lint": "bun run lint:biome && bun run lint:tsc",
"lint:biome": "bun biome check --write .",
"lint:tsc": "bun tsc --noEmit"
},
"keywords": [
"github",
"redirect",
"elysia",
"bun",
"typescript",
"github-redirect",
"github-profile"
],
"author": "LautyDev",
"license": "ISC",
"dependencies": {
"@elysiajs/cors": "1.4.1",
"@elysiajs/html": "1.4.0",
"elysia": "1.4.20",
"tslib": "2.8.1"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@types/bun": "1.3.5",
"typescript": "5.9.3"
},
"trustedDependencies": [
"@biomejs/biome"
]
}