@oss-autopilot/core 2.0.0 → 3.0.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 (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -18,7 +18,7 @@ npx @oss-autopilot/core daily --json
18
18
 
19
19
  ## Requirements
20
20
 
21
- - Node.js 20+
21
+ - Node.js 22+
22
22
  - GitHub CLI (`gh`) authenticated, or `GITHUB_TOKEN` environment variable
23
23
 
24
24
  ## CLI Usage
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oss-autopilot/core",
3
- "version": "2.0.0",
3
+ "version": "3.0.1",
4
4
  "description": "CLI and core library for managing open source contributions",
5
5
  "type": "module",
6
6
  "bin": {
@@ -49,7 +49,7 @@
49
49
  "url": "https://github.com/costajohnt/oss-autopilot/issues"
50
50
  },
51
51
  "engines": {
52
- "node": ">=20.0.0"
52
+ "node": ">=22.0.0"
53
53
  },
54
54
  "dependencies": {
55
55
  "@octokit/plugin-throttling": "^11.0.3",
@@ -69,7 +69,7 @@
69
69
  },
70
70
  "scripts": {
71
71
  "build": "tsc",
72
- "bundle": "esbuild src/cli.ts --bundle --platform=node --target=node20 --format=cjs --minify --sourcemap --outfile=dist/cli.bundle.cjs",
72
+ "bundle": "esbuild src/cli.ts --bundle --platform=node --target=node22 --format=cjs --minify --sourcemap --outfile=dist/cli.bundle.cjs",
73
73
  "start": "tsx src/cli.ts",
74
74
  "dev": "tsx watch src/cli.ts",
75
75
  "typecheck": "tsc --noEmit",