-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 862 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 862 Bytes
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
{
"name": "logd",
"description": "A powerful modular logging facility for node.js",
"version": "5.1.14",
"homepage": "https://github.com/distributed-systems/logd",
"author": "Lina van der Weg <lina@vanderweg.ch>",
"license": "MIT",
"repository": {
"url": "https://github.com/distributed-systems/logd.git",
"type": "git"
},
"dependencies": {
"error-stack-parser": "^2.1.4",
"logd-console-output": "^3.0.5"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.1",
"@types/node": "^22.14.1",
"typescript": "^5.8.3"
},
"keywords": [
"log",
"logger"
],
"scripts": {
"build": "node ./node_modules/.bin/tsc",
"clean": "rm -r build"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module"
}