-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.31 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": "rabbitly",
"version": "0.0.0",
"description": "",
"main": "dist/rabbitly.js",
"bin": {
"rabbitly": "./dist/cli.js"
},
"scripts": {
"prepare": "npm run build",
"build": "npm run build:project && npm run build:schema",
"build:schema": "node -e \"require('fs').writeFileSync('schema.json', JSON.stringify(require('./dist/config').Configuration, null, 2));\"",
"build:project": "tsc",
"build:project:dev": "tsc --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write \"**/*.{ts,js,json,yaml}\"",
"lint": "eslint \"src/**/*.ts\" --fix",
"dev": "npm run build:project:dev && npm run build:schema"
},
"keywords": [
"amqp",
"rabbitq",
"node"
],
"files": [
"dist",
"schema.json"
],
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"@cloudamqp/amqp-client": "^2.1.0",
"@sinclair/typebox": "^0.24.39",
"dotenv": "^16.0.2",
"js-yaml": "^4.1.0",
"zod": "^3.19.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.7.16",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.7.1",
"typescript": "^4.8.3"
}
}