-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.74 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
{
"name": "fastify-aws-powertools",
"version": "0.0.16",
"description": "",
"exports": {
"node": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts"
}
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types",
"scripts": {
"prepublish": "pnpm run build",
"build": "tsc --project tsconfig.mjs.json & tsc --project tsconfig.cjs.json",
"lint": "biome lint .",
"lint:fix": "pnpm biome check --write .",
"test": "vitest --allowOnly",
"coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jorgevrgs/fastify-aws-powertools.git"
},
"keywords": [],
"author": "Jorge Vargas <jorgevargasla@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jorgevrgs/fastify-aws-powertools/issues"
},
"homepage": "https://github.com/jorgevrgs/fastify-aws-powertools#readme",
"dependencies": {
"@aws-lambda-powertools/logger": "2.8.0",
"@aws-lambda-powertools/metrics": "2.8.0",
"@aws-lambda-powertools/tracer": "2.8.0",
"fastify-plugin": "^4.5.1"
},
"devDependencies": {
"@aws-lambda-powertools/commons": "2.8.0",
"@biomejs/biome": "^1.8.3",
"@fastify/aws-lambda": "^3.1.3",
"@tsconfig/recommended": "^1.0.1",
"@types/aws-lambda": "^8.10.104",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"aws-lambda": "^1.0.7",
"aws-xray-sdk-core": "^3.10.1",
"fastify": "^4.28.1",
"pino": "^9.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"peerDependencies": {
"@fastify/aws-lambda": "^3.1.3",
"fastify": "^4.28.1"
}
}