-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.32 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
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "onhyper",
"version": "1.0.0",
"description": "OnHyper.io - Secure proxy service for publishing API-backed web apps",
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "vitest",
"migrate:features": "tsx src/scripts/migrate-features.ts",
"admin:users": "tsx src/scripts/admin-users.ts"
},
"keywords": [
"proxy",
"api-keys",
"secure",
"web-apps",
"static-hosting"
],
"license": "MIT",
"dependencies": {
"@hono/node-server": "^1.13.7",
"@react-email/components": "^1.0.7",
"@react-email/render": "^2.0.4",
"@types/react": "^19.2.14",
"adm-zip": "^0.5.16",
"bcrypt": "^5.1.1",
"better-sqlite3": "^11.7.0",
"gray-matter": "^4.0.3",
"hono": "^4.12.0",
"jsonwebtoken": "^9.0.2",
"lmdb": "^3.1.5",
"marked": "^17.0.2",
"posthog-node": "^5.24.15",
"react": "^19.2.4",
"resend": "^6.9.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/adm-zip": "^0.5.7",
"@types/bcrypt": "^5.0.2",
"@types/better-sqlite3": "^7.6.12",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^22.10.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=20.0.0"
}
}