forked from OpenAgentsInc/openagents-pool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.86 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
{
"name": "openagents-pool",
"version": "1.0.0",
"description": "",
"main": "src/main.js",
"scripts": {
"build-src": "npx tsc -p ./tsconfig.json && npx tsc-alias -p tsconfig.json",
"build": "npm run build-src",
"start": "node build/js/main.js",
"debug": "npm run build && cd build && node --trace-warnings js/main.js",
"ui": "bash run-grpc-ui.sh",
"test": "echo \"Error: no test specified\" && exit 0",
"test_blobsA": "ts-node --experimental-specifier-resolution=node --transpile-only --esm src/tests/test_blobsA.ts",
"test_blobsB": "ts-node --experimental-specifier-resolution=node --transpile-only --esm src/tests/test_blobsB.ts"
},
"author": "",
"license": "",
"type": "module",
"dependencies": {
"@grpc/grpc-js": "^1.10.4",
"@grpc/proto-loader": "^0.7.11",
"@grpc/reflection": "^1.0.3",
"@noble/secp256k1": "^2.1.0",
"@protobuf-ts/grpc-backend": "^2.9.4",
"@protobuf-ts/plugin": "^2.9.4",
"@types/google-protobuf": "^3.15.12",
"corestore": "^6.18.1",
"google-protobuf": "^3.21.2",
"graceful-goodbye": "^1.3.0",
"grpc-tools": "^1.12.4",
"hyperbee": "^2.19.1",
"hypercore": "^10.36.1",
"hyperdrive": "^11.8.1",
"hyperswarm": "^4.7.14",
"install": "^0.13.0",
"nostr-tools": "^2.3.2",
"npm": "^10.5.0",
"openagents-grpc-proto": "https://github.com/OpenAgentsInc/openagents-grpc-proto/releases/download/v0.7.6/openagents_grpc_proto-JAVASCRIPT.tgz",
"ts-node": "^10.9.2",
"ts-protoc-gen": "^0.15.0",
"uuidv4": "^6.2.13",
"winston": "^3.13.0",
"winston-transport": "^4.7.0",
"ws": "^8.16.0"
},
"devDependencies": {
"tsc-alias": "^1.8.8",
"typescript": "^5.4.3"
}
}