@nest-omni/core 1.0.0 → 1.0.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.
Files changed (2) hide show
  1. package/README +16 -0
  2. package/package.json +2 -5
package/README ADDED
@@ -0,0 +1,16 @@
1
+ # Nest Omni Core
2
+
3
+ Nest Omni Core 是一个为快速开发而设计的Nest.js脚手架核心包。它包含了构建高效、可维护的Nest.js应用程序所需的基础依赖和配置。
4
+
5
+ ## 特点
6
+
7
+ - **预配置的Nest.js环境**:快速启动和运行Nest.js项目。
8
+ - **核心依赖集成**:包括了所有必要的Nest.js模块和中间件。
9
+ - **易于扩展**:简单的结构让您可以轻松添加更多功能。
10
+
11
+ ## 快速开始
12
+
13
+ 1. 安装包:
14
+
15
+ ```bash
16
+ npm install @nest-omni/core
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nest-omni/core",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "framework",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -12,7 +12,7 @@
12
12
  "devDependencies": {
13
13
  "typescript": "^5.4.5"
14
14
  },
15
- "peerDependencies": {
15
+ "dependencies": {
16
16
  "@dataui/crud": "^5.3.0",
17
17
  "@dataui/crud-typeorm": "^5.3.0",
18
18
  "@liaoliaots/nestjs-redis-health": "^9.0.4",
@@ -48,7 +48,6 @@
48
48
  "nestjs-cls": "^4.3.0",
49
49
  "nestjs-i18n": "^10.3.2",
50
50
  "nestjs-pino": "^3.4.0",
51
- "nodemailer": "^6.9.5",
52
51
  "pino-http": "^8.5.0",
53
52
  "pino-pretty": "^10.2.0",
54
53
  "reflect-metadata": "^0.1.13",
@@ -60,7 +59,5 @@
60
59
  "typeorm-adapter": "^1.6.1",
61
60
  "typeorm-transactional": "~0.4.1",
62
61
  "uuid": "^9.0.1"
63
- },
64
- "dependencies": {
65
62
  }
66
63
  }