@bts-soft/core 2.2.3 → 2.2.5

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 CHANGED
@@ -1,34 +1,45 @@
1
1
  {
2
2
  "name": "@bts-soft/core",
3
- "version": "2.2.3",
3
+ "version": "2.2.5",
4
4
  "author": "Omar Sabry",
5
- "description": "All bts-soft packages",
5
+ "description": "All bts-soft packages - meta-package bundling common, cache, validation, upload, and notifications for NestJS.",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "license": "MIT",
9
- "workspaces": [
10
- "packages/*"
9
+ "files": [
10
+ "dist"
11
11
  ],
12
+ "scripts": {
13
+ "build": "tsc -p tsconfig.json",
14
+ "prepublishOnly": "npm run build"
15
+ },
12
16
  "dependencies": {
13
- "@bts-soft/notifications": "^1.4.4",
14
- "@bts-soft/common": "1.2.7",
15
- "@bts-soft/cache": "^1.0.4",
16
- "@bts-soft/validation": "^1.1.0",
17
- "@bts-soft/upload": "^1.3.5"
17
+ "@bts-soft/notifications": "workspace:*",
18
+ "@bts-soft/common": "workspace:*",
19
+ "@bts-soft/cache": "workspace:*",
20
+ "@bts-soft/validation": "workspace:*",
21
+ "@bts-soft/upload": "workspace:*"
18
22
  },
19
23
  "peerDependencies": {
20
- "@nestjs/common": "^10.0.0",
21
- "@nestjs/core": "^10.0.0"
24
+ "@nestjs/common": ">=11.0.0",
25
+ "@nestjs/core": ">=11.0.0"
22
26
  },
23
- "overrides": {
24
- "@nestjs/common": "^10.0.0",
25
- "@nestjs/core": "^10.0.0"
26
- },
27
- "scripts": {
28
- "build": "tsc -p tsconfig.json"
27
+ "peerDependenciesMeta": {
28
+ "@nestjs/common": {
29
+ "optional": false
30
+ },
31
+ "@nestjs/core": {
32
+ "optional": false
33
+ }
29
34
  },
30
35
  "devDependencies": {
31
- "@types/node": "^24.7.1"
36
+ "@nestjs/common": "^11.0.0",
37
+ "@nestjs/core": "^11.0.0",
38
+ "@types/node": "^24.0.0",
39
+ "typescript": "^5.5.0"
40
+ },
41
+ "publishConfig": {
42
+ "access": "public"
32
43
  },
33
44
  "engines": {
34
45
  "node": ">=20.17.0",
package/src/index.ts DELETED
@@ -1,14 +0,0 @@
1
- // Notification Module
2
- export * from '@bts-soft/notifications';
3
-
4
- // Redis Module
5
- export * from '@bts-soft/cache';
6
-
7
- // Upload Module
8
- export * from '@bts-soft/upload';
9
-
10
- // Validation Decorators
11
- export * from '@bts-soft/validation';
12
-
13
- // Common Modules
14
- export * from '@bts-soft/common';
package/tsconfig.json DELETED
@@ -1,31 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "module": "commonjs",
4
- "target": "es2020",
5
- "declaration": true,
6
- "removeComments": true,
7
- "emitDecoratorMetadata": true,
8
- "experimentalDecorators": true,
9
- "allowSyntheticDefaultImports": true,
10
- "sourceMap": true,
11
- "incremental": true,
12
- "skipLibCheck": true,
13
- "strictNullChecks": false,
14
- "noImplicitAny": false,
15
- "strictBindCallApply": false,
16
- // "forceConsistentCasingInFileNames": false,
17
- "noFallthroughCasesInSwitch": false,
18
- "baseUrl": ".",
19
- "outDir": "./dist",
20
- "typeRoots": ["./node_modules/@types"],
21
- "paths": {
22
- "@bts-soft/mail-queue": ["packages/mail-queue/src/index.ts"],
23
- "@bts-soft/notifications": ["packages/notifications/src/index.ts"],
24
- "@bts-soft/upload": ["packages/upload/src/index.ts"],
25
- "@bts-soft/cache": ["packages/cache/src/index.ts"],
26
- "@bts-soft/validation": ["packages/validation/src/index.ts"]
27
- }
28
- },
29
- "include": ["src"],
30
- "exclude": ["node_modules", "dist"]
31
- }