-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·118 lines (118 loc) · 3.37 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "loglayer",
"version": "4.8.0",
"description": "Standardizes logging across multiple logging libraries, providing a consistent way to specify context, metadata, and errors.",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"main": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"require": "./dist/index.js"
}
},
"scripts": {
"add-changeset": "changeset add",
"add-readme": "git add README.md",
"build": "tsup src/index.ts",
"changeset": "changeset",
"clean": "rm -rf node_modules dist",
"compile": "tsc",
"debug": "ts-node-dev --inspect -- src/index.ts",
"debug:break": "ts-node-dev --inspect-brk -- src/index.ts",
"format": "biome format src --write",
"lint": "biome lint src",
"lint:check": "biome check --apply-unsafe src",
"lint-staged": "lint-staged",
"livetest:datadog-browser-logs": "ts-node-dev livetests/datadog-browser-logs.ts",
"livetest:bunyan": "ts-node-dev livetests/bunyan.ts",
"livetest:console": "ts-node-dev livetests/console.ts",
"livetest:express": "ts-node-dev livetests/express.ts",
"livetest:pino": "ts-node-dev livetests/pino.ts",
"livetest:roarr": "ROARR_LOG=true ts-node-dev livetests/roarr.ts",
"livetest:winston": "ts-node-dev livetests/winston.ts",
"livetest:log4js-node": "ts-node-dev livetests/log4js-node.ts",
"livetest:signale": "ts-node-dev livetests/signale.ts",
"livetest:consola": "ts-node-dev livetests/consola.ts",
"prepare": "husky install",
"release": "changeset publish",
"test": "vitest run",
"test:watch": "vitest",
"toc": "toc-md README.md README.md",
"ts-node-dev": "ts-node-dev",
"typecheck": "tsc --noEmit",
"version-packages": "changeset version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theogravity/loglayer.git"
},
"author": "Theo Gravity <theo@suteki.nu>",
"license": "MIT",
"bugs": {
"url": "https://github.com/theogravity/loglayer/issues"
},
"homepage": "https://github.com/theogravity/loglayer",
"keywords": [
"logging",
"log",
"roarr",
"log4js",
"log4js-node",
"winston",
"bunyan",
"structured",
"standard",
"wrapper",
"serialize",
"error",
"abstraction",
"pino",
"electron",
"signale",
"consola",
"datadog"
],
"devDependencies": {
"@biomejs/biome": "^1.6.4",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@datadog/browser-logs": "5.27.0",
"@types/bunyan": "^1.8.8",
"@types/node": "^20.12.8",
"@types/roarr": "^2.14.3",
"@types/signale": "^1.4.7",
"bunyan": "^1.8.15",
"consola": "^3.2.3",
"express": "^4.19.2",
"global-jsdom": "^25.0.0",
"husky": "^8.0.0",
"lint-staged": "^15.2.2",
"log4js": "^6.9.1",
"pino": "^8.0.0",
"roarr": "^7.11.0",
"serialize-error": "8.1.0",
"signale": "^1.4.0",
"toc-md-alt": "^0.4.6",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vitest": "^1.6.0",
"winston": "^3.7.2"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,html,css,json}": [
"npm run format",
"npm run lint:check"
]
},
"engines": {
"node": ">=18"
}
}