forked from permaweb/ao
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.05 KB
/
package.json
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
{
"name": "@permaweb/ao-cu",
"version": "1.0.0",
"description": "A NodeJS server that implements the ao Compute Unit specification",
"type": "module",
"main": "src/app.js",
"scripts": {
"dev": "nodemon",
"lint": "standard .",
"start": "node --experimental-wasm-memory64 -r dotenv/config src/app.js",
"test": "node --experimental-wasm-memory64 --test"
},
"dependencies": {
"@fastify/middie": "^8.3.1",
"@permaweb/ao-loader": "^0.0.29",
"@permaweb/ao-scheduler-utils": "^0.0.19",
"arweave": "^1.15.1",
"better-sqlite3": "^9.6.0",
"bytes": "^3.1.2",
"cors": "^2.8.5",
"dataloader": "^2.2.2",
"debug": "^4.3.4",
"dotenv": "^16.4.5",
"fast-glob": "^3.3.2",
"fastify": "^4.27.0",
"helmet": "^7.1.0",
"hyper-async": "^1.1.2",
"lru-cache": "^10.2.2",
"ms": "^2.1.3",
"p-map": "^7.0.2",
"ramda": "^0.30.0",
"warp-arbundles": "^1.0.4",
"workerpool": "^9.1.1",
"zod": "^3.23.7"
},
"devDependencies": {
"nodemon": "^3.1.0"
},
"engines": {
"node": ">=18"
}
}