-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 896 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
{
"name": "nestjs-cqrs-static-type-generator",
"version": "0.0.3",
"description": "Static types generator for @nestjs/cqrs handlers",
"main": "build/index.js",
"scripts": {
"build": "tsc",
"prepublish": "npm run build"
},
"bin": {
"generate-types": "./build/index.js"
},
"author": "Sonyahon <volkov030@gmail.com>",
"license": "MIT",
"repository": {
"url": "https://github.com/SonyaHon/nestjs-cqrs-static-type-generator"
},
"dependencies": {
"command-line-args": "^5.2.0",
"command-line-usage": "^6.1.1",
"ts-morph": "^12.0.0",
"typescript": "^4.4.3"
},
"devDependencies": {
"@types/command-line-args": "^5.2.0",
"@types/command-line-usage": "^5.0.2",
"@types/node": "^16.9.1"
},
"peerDependencies": {
"@nestjs/cqrs": "^8.0.0"
},
"keywords": [
"nestjs",
"cqrs",
"generator",
"static type"
]
}