-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.5 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.5 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@iqai/alert-logger",
"version": "1.0.1",
"description": "Smart alert aggregation for any destination — Discord, Sentry, Slack, console, or your own adapter",
"type": "module",
"license": "MIT",
"author": "IQ AI <https://github.com/IQAIcom>",
"keywords": [
"alert",
"logger",
"discord",
"webhook",
"error-tracking",
"aggregation",
"deduplication",
"nestjs",
"nextjs",
"monitoring"
],
"repository": {
"type": "git",
"url": "https://github.com/IQAIcom/alert-logger"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./nestjs": {
"types": "./dist/integrations/nestjs/index.d.ts",
"import": "./dist/integrations/nestjs/index.js",
"require": "./dist/integrations/nestjs/index.cjs"
},
"./nextjs": {
"node": {
"types": "./dist/integrations/nextjs/index.d.ts",
"import": "./dist/integrations/nextjs/index.js",
"require": "./dist/integrations/nextjs/index.cjs"
},
"default": null
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"nestjs": [
"./dist/integrations/nestjs/index.d.ts"
],
"nextjs": [
"./dist/integrations/nextjs/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "biome check src/",
"lint:fix": "biome check --write src/",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm run build",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset publish"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@nestjs/common": "^11.1.18",
"@nestjs/core": "^11.1.18",
"@types/express": "^5.0.6",
"@types/node": "^22.0.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"tsup": "^8.0.0",
"typescript": "^5.5.0",
"vitest": "^3.0.0"
},
"peerDependencies": {
"@nestjs/common": ">=10",
"@nestjs/config": ">=3",
"next": ">=14"
},
"peerDependenciesMeta": {
"@nestjs/common": {
"optional": true
},
"@nestjs/config": {
"optional": true
},
"next": {
"optional": true
}
},
"engines": {
"node": ">=18"
}
}