-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
58 lines (58 loc) · 1.67 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
{
"name": "esbuild-plugin-pino",
"version": "2.2.1",
"description": "An esbuild plugin to generate extra pino files for bundling",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./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",
"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 && 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 <[email protected]>",
"license": "MIT",
"files": [
"dist"
],
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "22.9.3",
"esbuild": "0.24.0",
"execa": "9.5.1",
"nodemon": "3.1.7",
"pino": "9.5.0",
"pino-loki": "2.3.1",
"pino-pretty": "12.1.0",
"pkgroll": "2.5.1",
"standard-version": "9.5.0",
"thread-stream": "3.1.0",
"tsx": "4.19.2",
"typescript": "5.7.2",
"vitest": "2.1.5"
},
"peerDependencies": {
"esbuild": ">=0.17.1 <=0.24.0"
}
}