-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 919 Bytes
/
package.json
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
{
"name": "nest-inngest",
"version": "1.3.2",
"description": "Strongly typed Inngest module for Nest.js 💪😾",
"keywords": [
"nest",
"nestjs",
"inngest",
"event driven",
"background jobs"
],
"repository": "https://github.com/thawankeane/nest-inngest",
"license": "MIT",
"author": "Thawan Keane <[email protected]>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup"
},
"dependencies": {
"@golevelup/nestjs-discovery": "^4.0.0"
},
"devDependencies": {
"@nestjs/common": "^10.2.8",
"@nestjs/core": "^10.2.8",
"@swc/core": "^1.3.96",
"@trivago/prettier-plugin-sort-imports": "^4.2.1",
"inngest": "^3.4.2",
"prettier": "^3.0.3",
"tsup": "^7.2.0"
},
"peerDependencies": {
"@nestjs/common": "^10.2.8",
"@nestjs/core": "^10.2.8",
"inngest": "^3.4.2"
}
}