mailpit-api 1.1.0 → 1.1.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mailpit-api",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "A NodeJS client library, written in TypeScript, to interact with the Mailpit API.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -18,7 +18,7 @@
18
18
  "test": "echo \"TODO: Add tests\" && exit 0",
19
19
  "build": "rm -fr dist/* && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && ./fixup_type",
20
20
  "pretty": "npx prettier . --write",
21
- "lint": "npx eslint . --fix"
21
+ "lint": "npx eslint --fix src"
22
22
  },
23
23
  "keywords": [
24
24
  "mailpit-api",
@@ -43,7 +43,7 @@
43
43
  "eslint": "^9.20.1",
44
44
  "jest": "^29.7.0",
45
45
  "prettier": "3.4.2",
46
- "tsx": "^4.19.2",
46
+ "tsx": "^4.19.3",
47
47
  "typescript": "^5.7.3",
48
48
  "typescript-eslint": "^8.24.0"
49
49
  }
@@ -13,13 +13,13 @@
13
13
  "noFallthroughCasesInSwitch": true,
14
14
  "pretty": true,
15
15
  "resolveJsonModule": true,
16
- "rootDir": ".",
16
+ "rootDir": "src",
17
17
  "skipLibCheck": true,
18
18
  "strict": true,
19
19
  "traceResolution": false,
20
20
  "types": ["node", "jest"]
21
21
  },
22
22
  "compileOnSave": false,
23
- "include": ["src", "eslint.config.mjs", "test"],
24
- "exclude": ["node_modules", "dist"]
23
+ "exclude": ["node_modules", "dist", "test"],
24
+ "include": ["src"]
25
25
  }
@@ -1,2 +0,0 @@
1
- declare const _default: import("@typescript-eslint/utils/dist/ts-eslint").FlatConfig.ConfigArray;
2
- export default _default;
@@ -1,2 +0,0 @@
1
- declare const _default: import("@typescript-eslint/utils/dist/ts-eslint").FlatConfig.ConfigArray;
2
- export default _default;
File without changes
File without changes
File without changes
File without changes