-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.29 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.29 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
{
"author": "Stefan Samson <ss42701@outlook.com> (https://ssbit01.github.io/)",
"bugs": {
"url": "https://github.com/SSbit01/secure-bun-server/issues"
},
"dependencies": {
"mailchecker": "^6.0.20",
"validator": "^13.15.35"
},
"description": "Template with passwordless authentication via email, KMS, and a MariaDB/MySQL database configured in Bun.",
"devDependencies": {
"@biomejs/biome": "2.4.12",
"@types/validator": "^13.15.10",
"bun-types": "^1.3.12",
"generate-license-file": "^4.1.1"
},
"engines": {
"bun": ">=1.3"
},
"homepage": "https://github.com/SSbit01/secure-bun-server#readme",
"license": "MIT",
"main": "./src/index.js",
"name": "secure-bun-server",
"private": true,
"repository": "github:SSbit01/secure-bun-server",
"scripts": {
"biome:check": "biome check",
"biome:check:write": "biome check --write",
"biome:format": "biome format",
"biome:format:write": "biome format --write",
"build": "bun ./scripts/build.js",
"compile": "bun ./scripts/compile.js",
"dev": "bun --hot ./src/index.js",
"license": "generate-license-file",
"setup": "bun run --parallel \"setup:*\"",
"setup:sql": "bun ./scripts/setup/sql.js",
"start": "bun ./dist/index.js",
"test": "bun test --bail"
},
"type": "module"
}