@hexaijs/plugin-application-builder 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +0 -0
- package/package.json +57 -66
package/dist/cli.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,69 +1,60 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
},
|
|
6
|
-
"version": "0.1.0",
|
|
7
|
-
"description": "Build plugin for generating ApplicationBuilder code from decorated handlers",
|
|
8
|
-
"license": "MIT",
|
|
9
|
-
"author": "Sangwoo Hyun <wkdny.hyun@gmail.com>",
|
|
10
|
-
"contributors": [
|
|
11
|
-
"Seungcheol Baek <victoryiron.baek@gmail.com>",
|
|
12
|
-
"Donghyun Lee <edonghyun@naver.com>"
|
|
13
|
-
],
|
|
14
|
-
"repository": {
|
|
15
|
-
"type": "git",
|
|
16
|
-
"url": "git+https://github.com/workingdanny911/hexai.git",
|
|
17
|
-
"directory": "packages/plugin-application-builder"
|
|
18
|
-
},
|
|
19
|
-
"homepage": "https://github.com/workingdanny911/hexai#readme",
|
|
20
|
-
"bugs": {
|
|
21
|
-
"url": "https://github.com/workingdanny911/hexai/issues"
|
|
22
|
-
},
|
|
23
|
-
"keywords": [
|
|
24
|
-
"hexai",
|
|
25
|
-
"hexagonal",
|
|
26
|
-
"clean-architecture",
|
|
27
|
-
"ddd",
|
|
28
|
-
"cqrs",
|
|
29
|
-
"application-builder",
|
|
30
|
-
"code-generation",
|
|
31
|
-
"typescript"
|
|
32
|
-
],
|
|
33
|
-
"files": [
|
|
34
|
-
"dist",
|
|
35
|
-
"LICENSE"
|
|
36
|
-
],
|
|
37
|
-
"bin": {
|
|
38
|
-
"generate-app-builder": "./dist/cli.js"
|
|
39
|
-
},
|
|
40
|
-
"exports": {
|
|
41
|
-
".": {
|
|
42
|
-
"types": "./dist/index.d.ts",
|
|
43
|
-
"import": "./dist/index.js",
|
|
44
|
-
"require": "./dist/index.js"
|
|
2
|
+
"name": "@hexaijs/plugin-application-builder",
|
|
3
|
+
"publishConfig": {
|
|
4
|
+
"access": "public"
|
|
45
5
|
},
|
|
46
|
-
"
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
6
|
+
"version": "0.1.1",
|
|
7
|
+
"description": "Build plugin for generating ApplicationBuilder code from decorated handlers",
|
|
8
|
+
"license": "MIT",
|
|
9
|
+
"author": "Sangwoo Hyun <wkdny.hyun@gmail.com>",
|
|
10
|
+
"contributors": [
|
|
11
|
+
"Seungcheol Baek <victoryiron.baek@gmail.com>",
|
|
12
|
+
"Donghyun Lee <edonghyun@naver.com>"
|
|
13
|
+
],
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git+https://github.com/workingdanny911/hexai.git",
|
|
17
|
+
"directory": "packages/plugin-application-builder"
|
|
18
|
+
},
|
|
19
|
+
"homepage": "https://github.com/workingdanny911/hexai#readme",
|
|
20
|
+
"bugs": {
|
|
21
|
+
"url": "https://github.com/workingdanny911/hexai/issues"
|
|
22
|
+
},
|
|
23
|
+
"keywords": ["hexai", "hexagonal", "clean-architecture", "ddd", "cqrs", "application-builder", "code-generation", "typescript"],
|
|
24
|
+
"files": [
|
|
25
|
+
"dist",
|
|
26
|
+
"LICENSE"
|
|
27
|
+
],
|
|
28
|
+
"bin": {
|
|
29
|
+
"generate-app-builder": "./dist/cli.js"
|
|
30
|
+
},
|
|
31
|
+
"scripts": {
|
|
32
|
+
"test": "npm run build && vitest",
|
|
33
|
+
"build": "tsc -p ./tsconfig.build.json && tsc-alias"
|
|
34
|
+
},
|
|
35
|
+
"exports": {
|
|
36
|
+
".": {
|
|
37
|
+
"types": "./dist/index.d.ts",
|
|
38
|
+
"import": "./dist/index.js",
|
|
39
|
+
"require": "./dist/index.js"
|
|
40
|
+
},
|
|
41
|
+
"./decorators": {
|
|
42
|
+
"types": "./dist/decorators/index.d.ts",
|
|
43
|
+
"import": "./dist/decorators/index.js",
|
|
44
|
+
"require": "./dist/decorators/index.js"
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"glob": "^10.0.0"
|
|
49
|
+
},
|
|
50
|
+
"peerDependencies": {
|
|
51
|
+
"@hexaijs/core": "workspace:^",
|
|
52
|
+
"@hexaijs/application": "workspace:^",
|
|
53
|
+
"@hexaijs/cli": "workspace:^",
|
|
54
|
+
"typescript": "^5.0.0"
|
|
55
|
+
},
|
|
56
|
+
"devDependencies": {
|
|
57
|
+
"@hexaijs/cli": "workspace:^",
|
|
58
|
+
"@types/node": "^20.0.0"
|
|
50
59
|
}
|
|
51
|
-
|
|
52
|
-
"dependencies": {
|
|
53
|
-
"glob": "^10.0.0"
|
|
54
|
-
},
|
|
55
|
-
"peerDependencies": {
|
|
56
|
-
"typescript": "^5.0.0",
|
|
57
|
-
"@hexaijs/core": "^0.2.0",
|
|
58
|
-
"@hexaijs/application": "^0.1.0",
|
|
59
|
-
"@hexaijs/cli": "^0.1.0"
|
|
60
|
-
},
|
|
61
|
-
"devDependencies": {
|
|
62
|
-
"@types/node": "^20.0.0",
|
|
63
|
-
"@hexaijs/cli": "^0.1.0"
|
|
64
|
-
},
|
|
65
|
-
"scripts": {
|
|
66
|
-
"test": "npm run build && vitest",
|
|
67
|
-
"build": "tsc -p ./tsconfig.build.json && tsc-alias"
|
|
68
|
-
}
|
|
69
|
-
}
|
|
60
|
+
}
|