forked from permaweb/ao
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.23 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
43
44
45
46
47
48
{
"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.35",
"@permaweb/ao-scheduler-utils": "^0.0.19",
"@permaweb/weavedrive": "^0.0.6",
"arweave": "^1.15.1",
"async-lock": "^1.4.1",
"better-sqlite3": "^11.1.2",
"bytes": "^3.1.2",
"cors": "^2.8.5",
"dataloader": "^2.2.2",
"debug": "^4.3.5",
"dotenv": "^16.4.5",
"fast-glob": "^3.3.2",
"fastify": "^4.28.1",
"helmet": "^7.1.0",
"hyper-async": "^1.1.2",
"long-timeout": "^0.1.1",
"lru-cache": "^10.3.0",
"ms": "^2.1.3",
"p-map": "^7.0.2",
"prom-client": "^15.1.3",
"ramda": "^0.30.1",
"undici": "^6.19.2",
"warp-arbundles": "^1.0.4",
"workerpool": "^9.1.3",
"zod": "^3.23.8"
},
"devDependencies": {
"nodemon": "^3.1.4"
},
"engines": {
"node": ">=18",
"yarn": "please-use-npm"
}
}