-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.79 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.79 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
72
73
{
"name": "@ips-hosting/pino-sentry-stream",
"version": "3.1.4",
"description": "A pino stream to automatically pass errors to Sentry.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/IPS-Hosting/pino-sentry-stream.git"
},
"scripts": {
"build": "tsc --project ./tsconfig.json",
"tsc:check": "tsc --project ./tsconfig.json --noEmit",
"start": "node ./dist/index.js",
"check": "biome check .",
"test": "pnpm run check && pnpm run tsc:check",
"prepack": "pnpm run build"
},
"files": [
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"types": "./dist/index.d.ts",
"sideEffects": false,
"publishConfig": {
"access": "public",
"provenance": true
},
"peerDependencies": {
"@sentry/core": "^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.3.6",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "13.1.2",
"@sentry/core": "10.26.0",
"@tsconfig/node20": "20.1.8",
"@tsconfig/strictest": "2.0.8",
"@types/node": "20.19.25",
"semantic-release": "25.0.2",
"typescript": "5.9.3"
},
"release": {
"branches": [
"main",
{
"name": "next",
"prerelease": true
}
],
"preset": "angular",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git"
]
},
"type": "module",
"packageManager": "pnpm@10.22.0+sha512.bf049efe995b28f527fd2b41ae0474ce29186f7edcb3bf545087bd61fbbebb2bf75362d1307fda09c2d288e1e499787ac12d4fcb617a974718a6051f2eee741c",
"engines": {
"node": ">=20"
}
}