-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.28 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
{
"name": "fastify-moleculer",
"version": "0.1.4",
"description": "Fastify plugin to integrate moleculer in Fastify applications",
"author": "Manuel Salvatore Martone - @hoghweed",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": ["dist"],
"exports": {
".": {
"typescript": "./src/index.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "rimraf dist && tsc --build",
"check:types": "tsc --noEmit",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"commit": "npx git-cz",
"commitlint": "commitlint",
"lint": "biome check .",
"format": "biome format --write .",
"prepare": "husky",
"precommit": "pnpm install",
"check-updates": "pnpm outdated --recursive",
"preinstall": "npx only-allow pnpm",
"prepublish": "pnpm build",
"release": "pnpm build && changeset publish",
"test": "pnpm check:types && pnpm unit",
"unit": "tsx --test test/*.ts",
"test:watch": "tsx --watch --test ./test/*.ts",
"test:coverage": "c8 --all --src dist --reporter lcov --reporter text tsx --test ./test/*.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/ducktors/fastify-moleculer.git"
},
"dependencies": {
"fastify-plugin": "^4.5.1",
"tslib": "^2.7.0"
},
"engines": {
"node": ">=20"
},
"packageManager": "[email protected]",
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.4",
"@biomejs/biome": "1.2.2",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/lint": "^19.5.0",
"@commitlint/prompt": "^19.5.0",
"@ducktors/tsconfig": "^1.0.0",
"@moleculer/channels": "^0.1.8",
"@types/node": "^22.7.5",
"c8": "^10.1.2",
"commitlint-plugin-function-rules": "^4.0.0",
"fastify-tsconfig": "^2.0.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"tsx": "^4.19.1",
"turbo": "^2.1.3",
"fastify": "^4.27.0",
"moleculer": "^0.14.34",
"rimraf": "^6.0.1",
"typescript": "^5.6.3"
},
"peerDependencies": {
"@moleculer/channels": "^0.1.8",
"fastify": "4.x.x",
"moleculer": "^0.14.34"
}
}