https://github.com/lisez/deptoday
deno dependencies checker
https://github.com/lisez/deptoday
deno denoland dependencies dependency jsr npm
Last synced: about 2 months ago
JSON representation
deno dependencies checker
- Host: GitHub
- URL: https://github.com/lisez/deptoday
- Owner: lisez
- License: mit
- Created: 2024-06-02T01:04:43.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-02T14:17:23.000Z (about 2 years ago)
- Last Synced: 2025-01-07T01:10:45.284Z (over 1 year ago)
- Topics: deno, denoland, dependencies, dependency, jsr, npm
- Language: TypeScript
- Homepage:
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# deptoday
deno dependencies checker
supported:
- `jsr` specifier.
- `npm` specifier.
- `https://deno.land` domain.
## Usage
```bash
deno run --allow-read --allow-net --allow-env scripts/check.ts .
```
```bash
deno run --allow-env --allow-read --allow-net https://raw.githubusercontent.com/lisez/deptoday/main/scripts/check.ts .
```
### Examples
```bash
> deno run -A scripts/check.ts .
┌─────────────┬──────────┬───────────┬───────────┐
│ (idx) │ Provider │ Version │ Latest │
├─────────────┼──────────┼───────────┼───────────┤
│ @std/assert │ "jsr" │ "0.224.0" │ "0.225.3" │
│ @std/async │ "jsr" │ "0.224.0" │ "0.224.1" │
│ @std/fs │ "jsr" │ "0.224.0" │ "0.229.1" │
│ @std/path │ "jsr" │ "0.224.0" │ "0.225.1" │
└─────────────┴──────────┴───────────┴───────────┘
```