-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.06 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.06 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
{
"name": "SparkHub",
"version": "1.3.1",
"scripts": {
"test": "bun test",
"dev": "bun run --watch src/index.ts",
"build": "bun build src/client/app.tsx --outdir dist --target browser --production",
"build:watch": "bun build src/client/app.tsx --outdir dist --target browser --watch",
"start": "bun run build && PORT=443 bun run src/index.ts",
"dev:full": "concurrently \"bun run dev\" \"bun run build:watch\"",
"tslint": "tsc --noEmit",
"check": "biome check src/",
"check:fix": "biome check --fix src/"
},
"dependencies": {
"@buildonspark/spark-sdk": "0.8.1",
"@elysiajs/eden": "^1.4.9",
"@elysiajs/static": "^1.4.10",
"@elysiajs/swagger": "^1.3.1",
"bech32": "^2.0.0",
"bolt11": "^1.4.1",
"browserify-cipher": "^1.0.1",
"elysia": "latest",
"preact": "^10.29.2",
"preact-router": "^4.1.2",
"qrcode": "^1.5.4"
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@types/qrcode": "^1.5.6",
"bun-types": "latest",
"concurrently": "^9.2.1"
},
"module": "src/index.js"
}