-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.03 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.03 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
{
"name": "esbuild-plugin-pino",
"version": "2.3.3",
"description": "An esbuild plugin to generate extra pino files for bundling",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.mjs"
}
},
"repository": "https://github.com/davipon/esbuild-plugin-pino",
"bugs": "https://github.com/davipon/esbuild-plugin-pino/issues",
"scripts": {
"dev": "nodemon",
"build": "pkgroll && node fix-exports.js",
"buildJS": "pkgroll && node test/buildScripts/buildJS.js",
"buildTS": "pkgroll && tsx test/buildScripts/buildTS.ts",
"buildTS2": "pkgroll && tsx test/buildScripts/arrayOfObjects.ts",
"test": "rm -rf dist && pkgroll && node fix-exports.js && vitest run",
"check": "biome check --write .",
"release:major": "standard-version --no-verify --release-as major",
"release:minor": "standard-version --no-verify --release-as minor",
"release:patch": "standard-version --no-verify --release-as patch"
},
"keywords": [
"pino",
"esbuild",
"esbuild-plugin",
"pino-transport",
"bundling"
],
"author": "David Peng <davipondev@gmail.com>",
"license": "MIT",
"files": [
"dist",
"fix-exports.js"
],
"devDependencies": {
"@biomejs/biome": "^2.1.4",
"@types/node": "24.12.0",
"esbuild": "0.27.4",
"execa": "9.6.1",
"nodemon": "3.1.14",
"pino": "9.14.0",
"pino-loki": "2.6.0",
"pino-pretty": "13.1.3",
"pkgroll": "2.27.0",
"standard-version": "9.5.0",
"thread-stream": "3.1.0",
"tsx": "4.21.0",
"typescript": "5.9.3",
"vitest": "3.2.4"
},
"peerDependencies": {
"esbuild": ">=0.25.0 <=0.27.4",
"pino": ">=7.0.0",
"pino-pretty": "*",
"thread-stream": "*"
},
"peerDependenciesMeta": {
"pino-pretty": {
"optional": true
},
"thread-stream": {
"optional": true
}
}
}