-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.15 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.15 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": "infernet-node-typescript",
"version": "1.0.0",
"description": "A translation of the Ritual Infernet Node in Javascript/TypeScript.",
"main": "src/main.ts",
"scripts": {
"test": "vitest",
"build": "tsc",
"start": "tsc && node build/src/main.js",
"dev": "nodemon src/main.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kphed/infernet-node-typescript.git"
},
"author": "kphed",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/kphed/infernet-node-typescript/issues"
},
"homepage": "https://github.com/kphed/infernet-node-typescript#readme",
"devDependencies": {
"@types/node": "^22.12.0",
"nodemon": "^3.1.9",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"vitest": "^3.0.7"
},
"dependencies": {
"@fastify/rate-limit": "^10.2.2",
"async-mutex": "^0.5.0",
"dockerode": "^4.0.4",
"dotenv": "^16.4.7",
"fastify": "^5.2.1",
"ip-address": "^10.0.1",
"lodash": "^4.17.21",
"lru-cache": "^11.0.2",
"pino-pretty": "^13.0.0",
"redis": "^4.7.0",
"uuid": "^11.1.0",
"viem": "^2.22.21",
"zod": "^3.24.2"
}
}