-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.01 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
{
"name": "@kiwilan/fastify-utils",
"type": "module",
"version": "0.2.20",
"description": "Collection of utilities for fastify framework, built to improve DX.",
"author": "Ewilan Rivière <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/kiwilan/fastify-utils",
"repository": {
"type": "git",
"url": "git+https://github.com/kiwilan/fastify-utils.git"
},
"bugs": {
"url": "https://github.com/kiwilan/fastify-utils/issues"
},
"keywords": [
"fastify",
"utils",
"router",
"middleware",
"cors",
"env"
],
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"compiler",
"lib"
],
"engines": {
"pnpm": ">=8.0.0",
"node": ">=16.0.0"
},
"directories": {
"dist": "dist",
"lib": "lib"
},
"scripts": {
"build": "tsup --clean",
"watch": "tsup --watch",
"lint": "eslint . --ignore-path .gitignore",
"lint:fix": "eslint . --fix --ignore-path .gitignore",
"test": "vitest",
"coverage": "vitest run --coverage",
"package": "rm -f kiwilan-fastify-utils-*.tgz ; pnpm build ; pnpm pack ; cp kiwilan-fastify-utils-*.tgz ~/kiwilan-fastify-utils.tgz"
},
"dependencies": {
"@fastify/cors": "^8.3.0",
"@fastify/env": "^4.2.0",
"@fastify/middie": "^8.3.0",
"@kiwilan/filesystem": "^0.0.18",
"chalk": "^5.3.0",
"commander": "^11.0.0",
"conf": "^11.0.2",
"esbuild": "^0.19.2",
"esbuild-plugin-pino": "^2.0.1",
"fastify": "^4.21.0",
"md5": "^2.3.0",
"ofetch": "^1.1.1",
"tiny-glob": "^0.2.9"
},
"devDependencies": {
"@antfu/eslint-config": "^0.40.2",
"@types/md5": "^2.3.2",
"@types/node": "^20.5.1",
"@vitest/coverage-v8": "^0.33.0",
"c8": "^8.0.1",
"eslint": "^8.47.0",
"pino-pretty": "^10.2.0",
"tsup": "^7.2.0",
"typescript": "^5.1.6",
"vitest": "^0.34.2"
}
}