-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.26 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.26 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
{
"name": "pino-seq",
"version": "4.0.0",
"description": "A stream that sends Pino log events to Seq",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "npm run build && mocha --ignore test/integration*.js",
"test:integration": "npm run build && mocha --include test/integration*.js --timeout 10000",
"dev": "tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/datalust/pino-seq.git"
},
"keywords": [
"pino",
"seq"
],
"author": "Datalust, Simi Hartstein, and contributors",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/datalust/pino-seq/issues"
},
"homepage": "https://github.com/datalust/pino-seq#readme",
"devDependencies": {
"@types/node": "^25.0.6",
"mocha": "^11.7.4",
"pino": "^10.1.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
},
"dependencies": {
"seq-logging": "^3.0.0"
},
"peerDependencies": {
"pino": "10.x"
},
"engines": {
"node": ">=18.0.0"
}
}