-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.72 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.72 KB
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-effect-runtime",
"version": "0.0.4",
"type": "module",
"description": "Library for integrating Effect runtime into fastify",
"scripts": {
"build": "tsdown",
"prepare": "husky",
"lint": "eslint .",
"format": "prettier --write .",
"typecheck": "tsc --noEmit"
},
"keywords": [
"fastify",
"node.js",
"effect"
],
"author": "Kyrylo Savieliev <k_savieliev@icloud.com>",
"homepage": "https://github.com/OneLiL05/fastify-effect-runtime",
"maintainers": [
{
"name": "Kyrylo Savieliev",
"url": "https://github.com/OneLiL05"
}
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/OneLiL05/fastify-effect-runtime.git"
},
"bugs": {
"url": "https://github.com/OneLiL05/fastify-effect-runtime/issues"
},
"engines": {
"node": ">=18.0.0"
},
"license": "MIT",
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"dist"
],
"lint-staged": {
"**/*.{js,ts,tsx}": [
"eslint --fix"
],
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"fastify-plugin": "^5.1.0"
},
"devDependencies": {
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@eslint/js": "^9.39.2",
"@types/node": "^25.0.3",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"tsdown": "^0.18.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.1"
},
"peerDependencies": {
"effect": ">=3.0.0",
"fastify": ">=5.0.0"
},
"packageManager": "pnpm@10.22.0",
"private": false
}