@arikajs/mail 0.0.7 → 0.10.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.
Files changed (1) hide show
  1. package/package.json +11 -12
package/package.json CHANGED
@@ -1,19 +1,10 @@
1
1
  {
2
2
  "name": "@arikajs/mail",
3
- "version": "0.0.7",
3
+ "version": "0.10.0",
4
4
  "description": "Email delivery system for the ArikaJS framework.",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
- "scripts": {
9
- "build": "tsc -p tsconfig.json",
10
- "build:tests": "tsc -p tsconfig.test.json",
11
- "clean": "rm -rf dist",
12
- "prepare": "echo skip",
13
- "test": "npx tsx --test tests/**/*.test.ts",
14
- "test:watch": "npx tsx --test --watch tests/**/*.test.ts",
15
- "dev": "tsc -p tsconfig.json --watch"
16
- },
17
8
  "files": [
18
9
  "dist"
19
10
  ],
@@ -50,5 +41,13 @@
50
41
  "@types/nodemailer": "^6.4.14",
51
42
  "typescript": "^5.3.3"
52
43
  },
53
- "author": "Prakash Tank"
54
- }
44
+ "author": "Prakash Tank",
45
+ "scripts": {
46
+ "build": "tsc -p tsconfig.json",
47
+ "build:tests": "tsc -p tsconfig.test.json",
48
+ "clean": "rm -rf dist",
49
+ "test": "npx tsx --test tests/**/*.test.ts",
50
+ "test:watch": "npx tsx --test --watch tests/**/*.test.ts",
51
+ "dev": "tsc -p tsconfig.json --watch"
52
+ }
53
+ }