-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.1 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.1 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
79
80
81
82
83
{
"name": "pino-loki",
"type": "module",
"version": "3.0.0",
"packageManager": "pnpm@10.25.0",
"description": "A transport for pino that sends messages to Loki",
"author": "Julien Ripouteau <julien@ripouteau.com>",
"license": "MIT",
"funding": "https://github.com/sponsors/Julien-R44",
"homepage": "https://github.com/Julien-R44/pino-loki#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Julien-R44/pino-loki.git"
},
"bugs": {
"url": "https://github.com/Julien-R44/pino-loki/issues"
},
"keywords": [
"pino",
"pino-transport",
"loki",
"logging"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"bin": {
"pino-loki": "dist/cli.mjs"
},
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsdown",
"lint": "eslint .",
"format": "prettier --write .",
"prepublishOnly": "pnpm build",
"release": "bumpp --commit --push --tag && pnpm publish",
"quick:test": "node --experimental-strip-types bin/test.ts",
"test": "c8 node --experimental-strip-types bin/test.ts",
"typecheck": "tsc --noEmit",
"checks": "pnpm typecheck && pnpm lint && pnpm test"
},
"dependencies": {
"pino-abstract-transport": "^3.0.0",
"pump": "^3.0.3"
},
"devDependencies": {
"@japa/assert": "^4.2.0",
"@japa/runner": "^5.0.0",
"@japa/spec-reporter": "^1.3.3",
"@julr/tooling-configs": "^5.0.0",
"@types/node": "^25.0.2",
"@types/pump": "^1.1.3",
"bumpp": "^10.3.2",
"c8": "^10.1.3",
"dotenv": "^17.2.3",
"eslint": "^9.39.2",
"msw": "^2.12.4",
"pino": "^10.1.0",
"pino-pretty": "^13.1.3",
"prettier": "^3.7.4",
"tsdown": "^0.17.4",
"typescript": "^5.9.3"
},
"prettier": "@julr/tooling-configs/prettier"
}