-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.66 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.66 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
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@seek/logger",
"version": "12.0.0",
"private": false,
"description": "Standardized logging",
"homepage": "https://github.com/seek-oss/logger#readme",
"bugs": {
"url": "https://github.com/seek-oss/logger/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seek-oss/logger.git"
},
"license": "MIT",
"author": {
"name": "SEEK"
},
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"files": [
"dist"
],
"scripts": {
"build": "skuba build-package",
"clean": "rm -fr lib",
"format": "skuba format",
"lint": "skuba lint",
"release": "pnpm build && changeset publish",
"stage": "changeset version && node ./.changeset/inject.js && pnpm format",
"test": "skuba test",
"test:ci": "skuba test --coverage",
"test:watch": "skuba test --watch"
},
"dependencies": {
"@pinojs/redact": "^0.4.0",
"dtrim": "^1.13.3",
"pino": "^10.1.0",
"pino-std-serializers": "^7.0.0"
},
"devDependencies": {
"@changesets/cli": "2.29.8",
"@changesets/get-github-info": "0.7.0",
"@types/split2": "4.2.3",
"skuba": "15.3.0",
"split2": "4.2.0",
"sury": "11.0.0-alpha.4"
},
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=22.14.0"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"skuba": {
"entryPoint": "src/index.ts",
"template": null,
"type": "package",
"version": "15.3.0"
}
}