-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 939 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 939 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
{
"name": "pingthing",
"version": "1.0.0",
"description": "Network reliability testing tool with monitoring and diagnostics",
"main": "src/index.ts",
"module": "src/index.ts",
"type": "module",
"private": true,
"scripts": {
"start": "bun src/index.ts",
"api": "bun src/api.ts",
"report": "bun src/report.ts",
"dev": "bun --watch src/index.ts",
"build": "bun build src/index.ts --outdir=dist --target=node",
"test": "bun test"
},
"keywords": ["network", "ping", "monitoring", "diagnostics", "reliability"],
"author": "",
"license": "MIT",
"dependencies": {
"@t3-oss/env-core": "^0.11.1",
"arg": "^5.0.2",
"consola": "^3.4.2",
"fastify": "^4.29.1",
"kysely": "^0.28.2",
"kysely-bun-sqlite": "^0.4.0",
"zod": "^3.25.67"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^20.19.1"
},
"peerDependencies": {
"typescript": "^5"
}
}