-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.4 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
52
53
54
55
56
{
"name": "substreams-sink-rabbitmq",
"version": "0.1.0",
"description": "Substreams RabbitMQ sink module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"substreams-sink-rabbitmq": "dist/bin/cli.js"
},
"repository": "git@github.com:pinax-network/substreams-sink-rabbitmq.git",
"keywords": [
"substreams",
"streamingfast",
"firehose",
"thegraph",
"pinax"
],
"author": {
"name": "Charles",
"email": "charles@pinax.network"
},
"files": [
"dist"
],
"contributors": [
{
"name": "Charles",
"email": "charles@pinax.network"
},
{
"name": "Denis",
"email": "denis@pinax.network"
}
],
"license": "MIT OR Apache-2.0",
"scripts": {
"prepublishOnly": "tsc",
"build": "tsup index.ts bin/cli.ts --dts",
"pkg": "ncc build bin/cli.ts -o build && pkg build/index.js"
},
"dependencies": {
"amqplib": "latest",
"commander": "latest",
"dotenv": "latest",
"substreams": "0.7.x",
"substreams-sink": "0.4.x"
},
"devDependencies": {
"@tsconfig/recommended": "latest",
"@types/amqplib": "latest",
"@vercel/ncc": "latest",
"pkg": "latest",
"tsup": "latest",
"typescript": "latest"
}
}