@depup/tsx 4.21.0-depup.0 → 4.21.0-depup.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.
Files changed (3) hide show
  1. package/README.md +31 -31
  2. package/changes.json +14 -0
  3. package/package.json +30 -5
package/README.md CHANGED
@@ -1,32 +1,32 @@
1
- <h1 align="center">
2
- <br>
3
- <picture>
4
- <source media="(prefers-color-scheme: dark)" srcset=".github/logo-dark.svg">
5
- <img width="160" alt="tsx" src=".github/logo-light.svg">
6
- </picture>
7
- <br><br>
8
- <a href="https://npm.im/tsx"><img src="https://badgen.net/npm/v/tsx"></a> <a href="https://npm.im/tsx"><img src="https://badgen.net/npm/dm/tsx"></a>
9
- </h1>
10
-
11
- <p align="center">
12
- TypeScript Execute (tsx): The easiest way to run TypeScript in Node.js
13
- <br><br>
14
- <a href="https://tsx.is">Documentation</a>&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;&nbsp;<a href="https://tsx.is/getting-started">Getting started →</a>
15
- </p>
16
-
17
- <br>
18
-
19
- <p align="center">
20
- <a href="https://github.com/sponsors/privatenumber/sponsorships?tier_id=398771"><img width="412" src="https://raw.githubusercontent.com/privatenumber/sponsors/master/banners/assets/donate.webp"></a>
21
- <a href="https://github.com/sponsors/privatenumber/sponsorships?tier_id=416984"><img width="412" src="https://raw.githubusercontent.com/privatenumber/sponsors/master/banners/assets/sponsor.webp"></a>
22
- </p>
23
- <p align="center"><sup><i>Already a sponsor?</i> Join the discussion in the <a href="https://github.com/pvtnbr/tsx">Development repo</a>!</sup></p>
24
-
25
- ## Sponsors
26
-
27
- <p align="center">
28
- <a href="https://github.com/sponsors/privatenumber">
29
- <img src="https://cdn.jsdelivr.net/gh/privatenumber/sponsors/sponsorkit/sponsors.svg">
30
- </a>
31
- </p>
1
+ # @depup/tsx
32
2
 
3
+ > Dependency-bumped version of [tsx](https://www.npmjs.com/package/tsx)
4
+
5
+ Generated by [DepUp](https://github.com/depup/npm) -- all production
6
+ dependencies bumped to latest versions.
7
+
8
+ ## Installation
9
+
10
+ ```bash
11
+ npm install @depup/tsx
12
+ ```
13
+
14
+ | Field | Value |
15
+ |-------|-------|
16
+ | Original | [tsx](https://www.npmjs.com/package/tsx) @ 4.21.0 |
17
+ | Processed | 2026-04-03 |
18
+ | Smoke test | passed |
19
+ | Deps updated | 2 |
20
+
21
+ ## Dependency Changes
22
+
23
+ | Dependency | From | To |
24
+ |------------|------|-----|
25
+ | esbuild | ~0.27.0 | ^0.28.0 |
26
+ | get-tsconfig | ^4.7.5 | ^4.13.7 |
27
+
28
+ ---
29
+
30
+ Source: https://github.com/depup/npm | Original: https://www.npmjs.com/package/tsx
31
+
32
+ License inherited from the original package.
package/changes.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "bumped": {
3
+ "esbuild": {
4
+ "from": "~0.27.0",
5
+ "to": "^0.28.0"
6
+ },
7
+ "get-tsconfig": {
8
+ "from": "^4.7.5",
9
+ "to": "^4.13.7"
10
+ }
11
+ },
12
+ "timestamp": "2026-04-03T00:43:47.296Z",
13
+ "totalUpdated": 2
14
+ }
package/package.json CHANGED
@@ -1,8 +1,14 @@
1
1
  {
2
2
  "name": "@depup/tsx",
3
- "version": "4.21.0-depup.0",
4
- "description": "TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files",
3
+ "version": "4.21.0-depup.1",
4
+ "description": "TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files (with updated dependencies)",
5
5
  "keywords": [
6
+ "tsx",
7
+ "depup",
8
+ "updated-dependencies",
9
+ "security",
10
+ "latest",
11
+ "patched",
6
12
  "cli",
7
13
  "runtime",
8
14
  "node",
@@ -19,7 +25,9 @@
19
25
  "email": "hiroki.osame@gmail.com"
20
26
  },
21
27
  "files": [
22
- "dist"
28
+ "dist",
29
+ "changes.json",
30
+ "README.md"
23
31
  ],
24
32
  "type": "module",
25
33
  "bin": "./dist/cli.mjs",
@@ -59,10 +67,27 @@
59
67
  "node": ">=18.0.0"
60
68
  },
61
69
  "dependencies": {
62
- "esbuild": "^0.27.3",
63
- "get-tsconfig": "^4.13.6"
70
+ "esbuild": "^0.28.0",
71
+ "get-tsconfig": "^4.13.7"
64
72
  },
65
73
  "optionalDependencies": {
66
74
  "fsevents": "~2.3.3"
75
+ },
76
+ "depup": {
77
+ "changes": {
78
+ "esbuild": {
79
+ "from": "~0.27.0",
80
+ "to": "^0.28.0"
81
+ },
82
+ "get-tsconfig": {
83
+ "from": "^4.7.5",
84
+ "to": "^4.13.7"
85
+ }
86
+ },
87
+ "depsUpdated": 2,
88
+ "originalPackage": "tsx",
89
+ "originalVersion": "4.21.0",
90
+ "processedAt": "2026-04-03T00:43:48.651Z",
91
+ "smokeTest": "passed"
67
92
  }
68
93
  }