This repository was archived by the owner on Dec 28, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.31 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.31 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
{
"name": "@nr1e/logging",
"description": "Provides a standard logging pattern",
"version": "1.6.1-alpha.0",
"type": "module",
"author": "NR1E, Inc.",
"publishConfig": {
"access": "public"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/nr1etech/logging-js.git"
},
"files": [
"**"
],
"scripts": {
"build": "tsc",
"prebuild": "prettier --check . && eslint .",
"postbuild": "cp package.json README.md dist",
"watch": "tsc -w",
"test": "vitest run --coverage",
"clean": "rm -rf dist && rm -rf site && rm -rf coverage",
"fmt": "prettier --write .",
"site": "typedoc --out site \"src/**/*.ts\" --exclude \"src/**/*.test.ts\""
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/node": "^22.10.1",
"@vitest/coverage-v8": "^2.1.6",
"eslint": "^9.15.0",
"prettier": "^3.4.1",
"typedoc": "^0.27.1",
"typescript": "^5.5.4",
"typescript-eslint": "^8.16.0",
"vitest": "^2.1.6"
},
"dependencies": {
"pino": "^9.5.0",
"pino-abstract-transport": "^2.0.0",
"remove": "^0.1.5",
"sonic-boom": "^4.2.0",
"tslib": "^2.8.1"
},
"peerDependencies": {
"pino": "^9.5.0"
},
"exports": {
".": {
"import": "./index.mjs",
"types": "./index.d.mts"
}
}
}