@lorenzopant/tmdb 1.17.4 → 1.17.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.
Files changed (1) hide show
  1. package/package.json +8 -18
package/package.json CHANGED
@@ -1,7 +1,6 @@
1
1
  {
2
2
  "name": "@lorenzopant/tmdb",
3
- "version": "1.17.4",
4
- "type": "module",
3
+ "version": "1.17.5",
5
4
  "description": "A completely type-safe The Movie Database (TMDB) API wrapper for typescript applications.",
6
5
  "keywords": [
7
6
  "api",
@@ -23,6 +22,7 @@
23
22
  "dist",
24
23
  "README.md"
25
24
  ],
25
+ "type": "module",
26
26
  "main": "dist/index.js",
27
27
  "types": "dist/index.d.ts",
28
28
  "exports": {
@@ -37,28 +37,24 @@
37
37
  },
38
38
  "scripts": {
39
39
  "build": "tsup",
40
+ "clean": "rm -rf dist coverage",
40
41
  "dev": "tsup --watch",
41
42
  "format": "oxfmt .",
42
- "typecheck": "tsc --noEmit",
43
- "test": "vitest",
43
+ "lint": "oxlint .",
44
+ "lint:check": "oxlint --type-aware --type-check .",
45
+ "test": "pnpm run test:unit",
44
46
  "test:unit": "vitest run --exclude '**/*.integration.test.ts'",
45
47
  "test:integration": "vitest run integration",
48
+ "test:watch": "vitest",
46
49
  "test:ui": "vitest --ui",
47
50
  "test:coverage": "vitest --coverage",
48
- "prepare": "husky",
49
- "lint": "oxlint .",
50
- "lint:check": "oxlint --type-aware --type-check .",
51
- "release": "pnpm release:patch",
52
- "release:patch": "pnpm version patch --git-tag-version && git push --follow-tags",
53
- "release:minor": "pnpm version minor --git-tag-version && git push --follow-tags",
54
- "release:major": "pnpm version major --git-tag-version && git push --follow-tags"
51
+ "typecheck": "tsc --noEmit"
55
52
  },
56
53
  "devDependencies": {
57
54
  "@types/node": "^22.19.11",
58
55
  "@vitest/coverage-v8": "^4.0.9",
59
56
  "@vitest/ui": "^4.0.10",
60
57
  "dotenv": "^16.5.0",
61
- "husky": "^9.1.7",
62
58
  "release-it": "^19.0.3",
63
59
  "release-it-pnpm": "^4.6.6",
64
60
  "ts-morph": "^27.0.2",
@@ -67,11 +63,5 @@
67
63
  "typescript": "^5.8.3",
68
64
  "vite": "^7.0.0",
69
65
  "vitest": "^4.0.9"
70
- },
71
- "packageManager": "pnpm@8.8.0",
72
- "pnpm": {
73
- "overrides": {
74
- "basic-ftp": "5.2.0"
75
- }
76
66
  }
77
67
  }