-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 951 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
41
42
43
44
{
"name": "@brandon-kyle-bailey/pegasus",
"version": "0.0.5",
"description": "A lightweight, platform agnostic framework for Dependency Injection, event based domain driven architecture with CQRS",
"main": "dist/src/index.js",
"bin": {
"pegasus": "dist/cli.js"
},
"types": "dist/src/index.d.ts",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build"
},
"keywords": [
"typescript",
"npm",
"package",
"cqrs",
"ddd",
"domain",
"driven",
"design",
"events",
"event",
"architecture",
"framework",
"dependency",
"injection"
],
"author": "brandon-kyle-bailey",
"license": "ISC",
"devDependencies": {
"typescript": "^5.4.5"
},
"dependencies": {
"@types/node": "^20.12.7",
"@types/uuid": "^9.0.8",
"@types/yargs": "^17.0.32",
"events": "^3.3.0",
"reflect-metadata": "^0.2.2",
"uuid": "^9.0.1",
"yargs": "^17.7.2"
}
}