-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.66 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.66 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
{
"name": "secure-otp-server",
"version": "4.4.2",
"description": "A template server for generating, encrypting, and verifying One-Time Passwords (OTP). Designed for microservices, modern authentication flows, and serverless environments.",
"author": "Stefan Samson <ss42701@outlook.com> (https://ssbit01.github.io/)",
"license": "MIT",
"repository": "github:SSbit01/secure-otp-server",
"homepage": "https://github.com/SSbit01/secure-otp-server#readme",
"bugs": {
"url": "https://github.com/SSbit01/secure-otp-server/issues"
},
"engines": {
"bun": ">=1.1.22",
"deno": ">=2.5",
"node": ">=25.0.0"
},
"type": "module",
"main": "./src/index.ts",
"scripts": {
"bun:dev": "bun run --hot ./src/index.ts",
"bun:test": "bun test --bail",
"bun:build": "concurrently 'generate-license-file' 'bun build ./src/index.ts --production --bytecode --target bun --outdir ./dist'",
"bun:start": "bun run ./dist/index.js",
"deno:dev": "deno serve --sloppy-imports --watch ./src/index.ts",
"deno:build": "concurrently 'generate-license-file' 'deno bundle --minify ./src/index.ts --outdir ./dist'",
"deno:start": "deno serve -A ./dist/index.js",
"deno:lint:write": "deno lint",
"deno:format": "deno fmt --check",
"deno:format:write": "deno fmt",
"cf:dev": "wrangler dev",
"cf:deploy": "wrangler deploy --minify",
"cf:typegen": "wrangler types --env-interface CloudflareBindings",
"license": "generate-license-file"
},
"dependencies": {
"hono": "^4.12.14"
},
"devDependencies": {
"@types/bun": "^1.3.13",
"concurrently": "^9.2.1",
"generate-license-file": "^4.1.1",
"wrangler": "^4.84.1"
}
}