@d3lm/pr-stats 0.1.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.
Files changed (3) hide show
  1. package/README.md +51 -0
  2. package/dist/index.mjs +1760 -0
  3. package/package.json +41 -0
package/package.json ADDED
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "@d3lm/pr-stats",
3
+ "version": "0.1.0",
4
+ "description": "GitHub PR stats from the command line, via the gh CLI or an access token",
5
+ "type": "module",
6
+ "author": "Dominic Elm",
7
+ "license": "MIT",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/d3lm/scripts.git",
11
+ "directory": "packages/pr-stats"
12
+ },
13
+ "keywords": [
14
+ "github",
15
+ "pull-request",
16
+ "review",
17
+ "stats",
18
+ "cli"
19
+ ],
20
+ "bin": {
21
+ "pr-stats": "./dist/index.mjs"
22
+ },
23
+ "files": [
24
+ "dist"
25
+ ],
26
+ "engines": {
27
+ "node": ">=20"
28
+ },
29
+ "publishConfig": {
30
+ "access": "public"
31
+ },
32
+ "devDependencies": {
33
+ "esbuild": "^0.28.2"
34
+ },
35
+ "dependencies": {
36
+ "asciichart": "^1.5.25"
37
+ },
38
+ "scripts": {
39
+ "build": "esbuild index.mjs --bundle --platform=node --format=esm --target=node20 --outfile=dist/index.mjs"
40
+ }
41
+ }