forked from twilson63/zenbin
-
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) · 838 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 838 Bytes
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": "zenbin",
"version": "1.0.0",
"description": "A headless HTML sandbox - publish and serve HTML documents via API",
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "vitest"
},
"keywords": [
"html",
"sandbox",
"api",
"hosting"
],
"license": "MIT",
"dependencies": {
"@hono/node-server": "^1.13.7",
"@types/bcrypt": "^5.0.2",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^22.10.2",
"bcrypt": "^5.1.1",
"hono": "^4.6.12",
"jsonwebtoken": "^9.0.2",
"lmdb": "^3.1.5",
"posthog-node": "^5.26.0",
"typescript": "^5.7.2"
},
"devDependencies": {
"tsx": "^4.19.2",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=20.0.0"
}
}