-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "fastify-rabbitmq",
"version": "3.1.0",
"description": "A Fastify RabbitMQ Plugin Developed in Pure TypeScript.",
"module": "./lib/esm/index.js",
"main": "./lib/cjs/index.js",
"types": "./lib/types/index.d.ts",
"exports": {
".": {
"types": "./lib/types/index.d.ts",
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js",
"default": "./lib/cjs/index.js"
}
},
"files": [
"lib/",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20.11.0"
},
"scripts": {
"clean": "rm -rf coverage docs lib temp",
"build": "tsc -p src/tsconfig.esm.json && tsc -p src/tsconfig.cjs.json && tsc -p src/tsconfig.types.json && ./bin/build-types.sh",
"build:watch": "tsc -p src/tsconfig.esm.json -w",
"build:watch:cjs": "tsc -p src/tsconfig.cjs.json -w",
"npm:lint": "npmPkgJsonLint .",
"format": "prettier --write 'README.md' 'src/**/*.ts' '__tests__/**/*.ts'",
"lint": "npm run npm:lint && eslint | snazzy",
"lint:fix": "npm run npm:lint && eslint --fix | snazzy",
"pack": "npm pack",
"prepublishOnly": "npm run clean && npm run build && npm run pack",
"test": "vitest run",
"test:verbose": "vitest run --reporter verbose",
"test:watch": "vitest watch",
"test:coverage": "vitest --coverage",
"typedoc": "typedoc",
"typedoc:watch": "typedoc -watch",
"update": "npx npm-check-updates -u --enginesNode && npm run update:post-update",
"update:post-update": "npm install && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bugs5382/fastify-rabbitmq.git"
},
"keywords": [
"rabbitmq-client",
"typescript",
"rabbitmq",
"fastify",
"fastify-plugin"
],
"author": "Shane Froebel",
"license": "MIT",
"bugs": {
"url": "https://github.com/Bugs5382/fastify-rabbitmq/issues"
},
"homepage": "https://github.com/Bugs5382/fastify-rabbitmq#readme",
"dependencies": {
"@fastify/error": "^4.0.0",
"fastify-plugin": "^5.0.1",
"rabbitmq-client": "^5.0.1"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@shipgirl/typedoc-plugin-versions": "^0.2.8",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.9.0",
"@types/tcp-port-used": "^1.0.4",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"@vitest/coverage-v8": "^2.1.5",
"@vitest/ui": "^2.1.5",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"fastify": "^5.1.0",
"npm-check-updates": "^17.1.11",
"npm-package-json-lint": "^8.0.0",
"pre-commit": "^1.2.2",
"snazzy": "^9.0.0",
"ts-node": "^10.9.2",
"tsd": "^0.31.2",
"typedoc": "^0.26.11",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0",
"vitest": "^2.1.5"
},
"precommit": [
"test",
"build",
"lint:fix"
]
}