@sibiltech/sibil-mail 1.0.0 → 1.0.2

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/LICENSE CHANGED
@@ -1,3 +1,14 @@
1
- UNLICENSED
1
+ Proprietary License
2
2
 
3
- This is private and proprietary software. All rights reserved.
3
+ Copyright (c) 2025 sibiltech. All rights reserved.
4
+
5
+ This software and associated documentation files (the "Software") are the
6
+ proprietary property of sibiltech. Unauthorized copying, modification,
7
+ distribution, or use of this Software, in whole or in part, is strictly
8
+ prohibited without prior written permission from sibiltech.
9
+
10
+ The Software is provided for use only by authorized users and organizations
11
+ that have been granted a license by sibiltech. No license or right is granted
12
+ by implication, estoppel, or otherwise.
13
+
14
+ For licensing inquiries, contact sibiltech at info@sibiltech.com.
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@sibiltech/sibil-mail",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "SMTP Email Sending Library for Sibil Platform",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "scripts": {
8
- "build": "tsc",
8
+ "build": "tsc -p tsconfig.build.json",
9
9
  "dev": "ts-node src/index.ts",
10
10
  "test": "jest",
11
11
  "test:email": "ts-node src/test-email.ts",
@@ -19,8 +19,8 @@
19
19
  "nodemailer",
20
20
  "sibil"
21
21
  ],
22
- "author": "sibiltech",
23
- "license": "UNLICENSED",
22
+ "author": "sibiltech <info@sibiltech.com>",
23
+ "license": "SEE LICENSE IN LICENSE",
24
24
  "publishConfig": {
25
25
  "access": "restricted"
26
26
  },
@@ -32,6 +32,7 @@
32
32
  "devDependencies": {
33
33
  "@types/cors": "^2.8.17",
34
34
  "@types/express": "^4.17.21",
35
+ "@types/jest": "^29.5.12",
35
36
  "@types/node": "^20.10.0",
36
37
  "@types/nodemailer": "^6.4.14",
37
38
  "dotenv": "^16.3.1",
@@ -0,0 +1,4 @@
1
+ {
2
+ "extends": "./tsconfig.json",
3
+ "exclude": ["node_modules", "dist", "src/**/*.test.ts", "src/tests"]
4
+ }