@exium/core 1.0.0-rc.0

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/package.json ADDED
@@ -0,0 +1,119 @@
1
+ {
2
+ "name": "@exium/core",
3
+ "version": "1.0.0-rc.0",
4
+ "description": "Opinionated NestJS-based framework for building DDD and Hexagonal Architecture microservices",
5
+ "main": "./dist/index.js",
6
+ "module": "./dist/index.mjs",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.mjs",
12
+ "require": "./dist/index.js"
13
+ }
14
+ },
15
+ "files": [
16
+ "dist"
17
+ ],
18
+ "publishConfig": {
19
+ "access": "public",
20
+ "registry": "https://registry.npmjs.org/"
21
+ },
22
+ "engines": {
23
+ "node": ">=22.17.0"
24
+ },
25
+ "workspaces": [
26
+ "cli",
27
+ "examples/*"
28
+ ],
29
+ "scripts": {
30
+ "build": "tsup",
31
+ "build:watch": "tsup --watch",
32
+ "prepack": "npm run build",
33
+ "format": "prettier --write \"src/**/*.ts\" \"cli/src/**/*.ts\"",
34
+ "test:compile": "rm -rf .test-dist && tsc -p tsconfig.tests.json",
35
+ "test:domain": "npm run build && npm run test:compile && node --test .test-dist/test/domain/**/*.test.js",
36
+ "test:config": "npm run build && npm run test:compile && node --test .test-dist/test/config/**/*.test.js",
37
+ "test:infrastructure": "npm run build && npm run test:compile && node --test --test-concurrency=1 .test-dist/test/infrastructure/**/*.test.js",
38
+ "test:application": "npm run build && npm run test:compile && node --test .test-dist/test/application/**/*.test.js",
39
+ "test:core": "npm run build && npm run test:compile && node --test .test-dist/test/core/**/*.test.js",
40
+ "test:http": "npm run build && npm run test:compile && node --test .test-dist/test/http/**/*.test.js",
41
+ "test:e2e": "npm run build && npm run test:compile && node --test .test-dist/test/e2e/**/*.test.js",
42
+ "test:cli": "npm run build -w @exium/cli && npm run test:compile && node --test .test-dist/test/cli/**/*.test.js",
43
+ "test:examples": "npm run build && npm run build -w order-management",
44
+ "test": "npm run test:domain && npm run test:config && npm run test:infrastructure && npm run test:application && npm run test:core && npm run test:http && npm run test:e2e && npm run test:cli && npm run test:examples",
45
+ "test:db:up": "docker compose -f test/docker-compose.yml up -d",
46
+ "test:db:down": "docker compose -f test/docker-compose.yml down -v"
47
+ },
48
+ "keywords": [
49
+ "nestjs",
50
+ "ddd",
51
+ "hexagonal",
52
+ "microservice",
53
+ "framework",
54
+ "cqrs",
55
+ "mikro-orm",
56
+ "outbox",
57
+ "result-type",
58
+ "modular-monolith"
59
+ ],
60
+ "repository": {
61
+ "type": "git",
62
+ "url": "git+https://github.com/yusuf218921/exium-framework.git"
63
+ },
64
+ "bugs": {
65
+ "url": "https://github.com/yusuf218921/exium-framework/issues"
66
+ },
67
+ "homepage": "https://github.com/yusuf218921/exium-framework#readme",
68
+ "author": "Yusuf Sönmez <yusufsonmez951@gmail.com>",
69
+ "license": "MIT",
70
+ "dependencies": {
71
+ "amqplib": "^1.0.3",
72
+ "ioredis": "^5.10.1",
73
+ "kysely": "^0.28.16",
74
+ "uuid": "^14.0.0"
75
+ },
76
+ "devDependencies": {
77
+ "@mikro-orm/core": "^7.0.12",
78
+ "@mikro-orm/mongodb": "^7.0.12",
79
+ "@mikro-orm/nestjs": "^7.0.1",
80
+ "@mikro-orm/postgresql": "^7.0.12",
81
+ "@nestjs/common": "^11.1.19",
82
+ "@nestjs/config": "^4.0.4",
83
+ "@nestjs/core": "^11.1.19",
84
+ "@nestjs/platform-express": "^11.1.19",
85
+ "@swc/core": "^1.15.30",
86
+ "@types/amqplib": "^0.10.8",
87
+ "@types/express": "^5.0.6",
88
+ "@types/node": "^25.6.0",
89
+ "class-transformer": "^0.5.1",
90
+ "class-validator": "^0.15.1",
91
+ "nestjs-pino": "^4.6.1",
92
+ "pino": "^10.3.1",
93
+ "pino-http": "^11.0.0",
94
+ "pino-pretty": "^13.1.3",
95
+ "prettier": "^3.8.3",
96
+ "reflect-metadata": "^0.2.2",
97
+ "rxjs": "^7.8.2",
98
+ "tsup": "^8.5.1",
99
+ "typescript": "^6.0.3"
100
+ },
101
+ "peerDependencies": {
102
+ "@mikro-orm/core": "^7.0.12",
103
+ "@mikro-orm/mongodb": "^7.0.12",
104
+ "@mikro-orm/nestjs": "^7.0.1",
105
+ "@mikro-orm/postgresql": "^7.0.12",
106
+ "@nestjs/common": "^11.0.5",
107
+ "@nestjs/config": "^4.0.0",
108
+ "@nestjs/core": "^11.0.5",
109
+ "@nestjs/platform-express": "^11.0.0",
110
+ "class-transformer": "^0.5.1",
111
+ "class-validator": "^0.15.0",
112
+ "nestjs-pino": "^4.6.1",
113
+ "pino": "^10.0.0",
114
+ "pino-http": "^11.0.0",
115
+ "pino-pretty": "^13.0.0",
116
+ "reflect-metadata": "^0.2.0",
117
+ "rxjs": "^7.8.0"
118
+ }
119
+ }