-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.56 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
{
"name": "pino-appinsights-transport",
"description": "Application Insights transport for pino.",
"version": "0.1.2",
"author": "Chris Meagher",
"homepage": "https://github.com/CMeeg/pino-appinsights-transport#readme",
"repository": {
"type": "git",
"url": "https://github.com/CMeeg/pino-appinsights-transport"
},
"bugs": {
"url": "https://github.com/CMeeg/pino-appinsights-transport/issues"
},
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "pkgroll"
},
"dependencies": {
"applicationinsights": "^3.0.0-beta.9",
"pino-abstract-transport": "^1.1.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"eslint": "^8.35.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.0",
"pkgroll": "^1.11.1",
"typescript": "5.2.2"
},
"peerDependencies": {
"applicationinsights": "^3.0.0-beta.9",
"pino": "^7.0.0 || ^8.0.0"
},
"files": [
"dist/",
"src/",
"LICENSE",
"package.json",
"README.md"
],
"publishConfig": {
"access": "public"
}
}