tsarr 2.2.0 → 2.3.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.
Binary file
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "tsarr",
3
- "version": "2.2.0",
3
+ "version": "2.3.0",
4
4
  "author": "Robbe Verhelst",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/robbeverhelst/tsarr.git"
8
8
  },
9
9
  "bin": {
10
- "tsarr": "./dist/cli/index.js"
10
+ "tsarr": "dist/cli/index.js"
11
11
  },
12
12
  "main": "dist/index.js",
13
13
  "module": "dist/index.js",
@@ -73,10 +73,11 @@
73
73
  },
74
74
  "description": "Type-safe TypeScript SDK for Servarr APIs (Radarr, Sonarr, etc.)",
75
75
  "engines": {
76
- "bun": ">=1.0.0"
76
+ "node": ">=18.0.0"
77
77
  },
78
78
  "files": [
79
- "dist"
79
+ "dist",
80
+ "!dist/binaries"
80
81
  ],
81
82
  "keywords": [
82
83
  "servarr",
@@ -100,7 +101,7 @@
100
101
  "scripts": {
101
102
  "build": "bun run generate && bun run generate:types && bun run build:js && bun run build:cli && bun run build:types",
102
103
  "build:js": "bun build src/index.ts --outdir dist --target node --minify --splitting && bun build src/clients/radarr.ts --outdir dist/clients --target node --format esm && bun build src/clients/sonarr.ts --outdir dist/clients --target node --format esm && bun build src/clients/lidarr.ts --outdir dist/clients --target node --format esm && bun build src/clients/readarr.ts --outdir dist/clients --target node --format esm && bun build src/clients/prowlarr.ts --outdir dist/clients --target node --format esm && bun build src/clients/bazarr.ts --outdir dist/clients --target node --format esm",
103
- "build:cli": "bun build src/cli/index.ts --outdir dist/cli --target bun --format esm && chmod +x dist/cli/index.js",
104
+ "build:cli": "bun build src/cli/index.ts --outdir dist/cli --target node --format esm && chmod +x dist/cli/index.js",
104
105
  "build:types": "tsc --project tsconfig.build.json",
105
106
  "prepublishOnly": "bun run build",
106
107
  "test": "bun test",
@@ -118,7 +119,8 @@
118
119
  "docs": "typedoc",
119
120
  "docs:serve": "typedoc --serve",
120
121
  "release": "semantic-release",
121
- "release:dry": "semantic-release --dry-run"
122
+ "release:dry": "semantic-release --dry-run",
123
+ "update-packaging": "bun run scripts/update-packaging.ts"
122
124
  },
123
125
  "sideEffects": false,
124
126
  "type": "module",
Binary file