-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
87 lines (87 loc) · 2.17 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
83
84
85
86
87
{
"name": "pino-loki",
"type": "commonjs",
"version": "2.4.0",
"packageManager": "pnpm@9.9.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": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"bin": {
"pino-loki": "dist/cli.cjs"
},
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && unbuild",
"dev": "unbuild --stub",
"lint": "eslint .",
"format": "prettier --write .",
"prepublishOnly": "pnpm build",
"release": "bumpp --commit --push --tag && pnpm publish",
"stub": "unbuild --stub",
"quick:test": "node -r ts-node/register bin/test.ts",
"test": "c8 node -r ts-node/register bin/test.ts",
"typecheck": "tsc --noEmit",
"checks": "pnpm typecheck && pnpm lint && pnpm test"
},
"dependencies": {
"commander": "^12.1.0",
"pino-abstract-transport": "^2.0.0",
"pump": "^3.0.2"
},
"devDependencies": {
"@japa/assert": "^1.4.1",
"@japa/runner": "^2.5.1",
"@japa/spec-reporter": "^1.3.3",
"@julr/tooling-configs": "^2.2.0",
"@types/node": "^22.10.1",
"@types/pump": "^1.1.3",
"bumpp": "^9.8.1",
"c8": "^10.1.2",
"dotenv": "^16.4.5",
"eslint": "^8.57.1",
"msw": "^2.6.6",
"pino": "^9.5.0",
"pino-pretty": "^11.3.0",
"prettier": "^3.4.1",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"unbuild": "^2.0.0"
},
"prettier": "@julr/tooling-configs/prettier"
}