-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathpackage.json
51 lines (51 loc) · 1.3 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
49
50
51
{
"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": "^9.0.2",
"@permaweb/ao-loader": "^0.0.44",
"@permaweb/ao-scheduler-utils": "^0.0.25",
"@permaweb/weavedrive": "^0.0.18",
"arweave": "^1.15.5",
"async-lock": "^1.4.1",
"better-sqlite3": "^11.7.0",
"bytes": "^3.1.2",
"cors": "^2.8.5",
"dataloader": "^2.2.3",
"dotenv": "^16.4.7",
"fast-glob": "^3.3.2",
"fastify": "^5.2.0",
"helmet": "^8.0.0",
"hyper-async": "^1.1.2",
"keccak": "^3.0.4",
"long-timeout": "^0.1.1",
"lru-cache": "^11.0.2",
"ms": "^2.1.3",
"opossum": "^8.4.0",
"p-map": "^7.0.3",
"p-queue": "^8.0.1",
"pg": "^8.13.1",
"prom-client": "^15.1.3",
"ramda": "^0.30.1",
"undici": "^7.2.0",
"warp-arbundles": "^1.0.4",
"winston": "^3.17.0",
"workerpool": "^9.2.0",
"zod": "^3.24.1"
},
"devDependencies": {
"nodemon": "^3.1.9"
},
"engines": {
"node": ">=18"
}
}