-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 956 Bytes
/
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
{
"name": "@platformatic/rabbitmq-hooks",
"version": "0.5.0",
"main": "index.js",
"bin": {
"create-platformatic-rabbitmq-hooks": "./cli/create.js",
"start-platformtic-rabbitmq-hooks": "./cli/start.js"
},
"scripts": {
"gen-schema": "node lib/schema.js > schema.json",
"gen-types": "json2ts > config.d.ts < schema.json",
"build:config": "pnpm run gen-schema && pnpm run gen-types",
"prepublishOnly": "pnpm run build:config",
"lint": "standard",
"test": "borp --concurrency=1"
},
"engines": {
"node": "^18.8.0 || >=20.6.0"
},
"devDependencies": {
"borp": "^0.19.0",
"fastify": "^5.0.0",
"pino": "^9.0.0",
"standard": "^17.0.0"
},
"dependencies": {
"@platformatic/config": "^2.0.0",
"@platformatic/service": "^2.0.0",
"amqplib": "^0.10.4",
"fastify-plugin": "^5.0.0",
"json-schema-to-typescript": "^15.0.0",
"undici": "^7.0.0"
},
"license": "Apache-2.0"
}