-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.28 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
{
"name": "logease",
"version": "0.1.0",
"description": "Beautiful, zero-dependency structured logging for Node.js & TypeScript. Tiny, colorful, extensible.",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"prepublishOnly": "npm run build",
"typecheck": "tsc --noEmit",
"bench": "node --import tsx bench/bench.ts"
},
"keywords": [
"logger",
"logging",
"log",
"structured-logging",
"console",
"color",
"zero-dependency",
"typescript",
"nodejs",
"tiny",
"transport",
"pretty"
],
"author": "Cryptoteep",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Cryptoteep/logease.git"
},
"bugs": {
"url": "https://github.com/Cryptoteep/logease/issues"
},
"homepage": "https://github.com/Cryptoteep/logease#readme",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/node": "^26.1.1",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}