gh-api-client 1.0.0 → 1.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 +4 -1
  2. package/package.json +19 -6
package/README.md CHANGED
@@ -2,7 +2,10 @@
2
2
 
3
3
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
4
4
 
5
- TypeScript client for the [GitHub REST API](https://docs.github.com/en/rest).
5
+ A lightweight Java client for the GitHub API that simplifies common operations such as listing repositories, branches, commits, collaborators, and files, with built-in support for token-based authentication.
6
+
7
+ [GitHub REST API](https://docs.github.com/en/rest).
8
+
6
9
  Works in **Node.js** and the **browser** (isomorphic). Fully typed, zero runtime dependencies.
7
10
 
8
11
  ---
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "gh-api-client",
3
- "version": "1.0.0",
4
- "description": "TypeScript client for the GitHub REST API",
3
+ "version": "1.0.1",
4
+ "description": "A lightweight Java client for the GitHub API that simplifies common operations such as listing repositories, branches, commits, collaborators, and files, with built-in support for token-based authentication.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
7
7
  "types": "dist/index.d.ts",
@@ -30,10 +30,17 @@
30
30
  },
31
31
  "keywords": [
32
32
  "github",
33
- "github-api",
34
- "api-client",
35
- "rest",
36
- "typescript"
33
+ "api",
34
+ "client",
35
+ "repositories",
36
+ "branches",
37
+ "commits",
38
+ "collaborators",
39
+ "files",
40
+ "pull requests",
41
+ "github api client",
42
+ "github api wrapper",
43
+ "github api library"
37
44
  ],
38
45
  "license": "MIT",
39
46
  "homepage": "https://github.com/ElJijuna/github-api-client",
@@ -41,9 +48,15 @@
41
48
  "type": "git",
42
49
  "url": "https://github.com/ElJijuna/github-api-client.git"
43
50
  },
51
+ "bugs": {
52
+ "url": "https://github.com/ElJijuna/github-api-client/issues"
53
+ },
44
54
  "devDependencies": {
55
+ "@semantic-release/changelog": "^6.0.3",
56
+ "@semantic-release/git": "^10.0.1",
45
57
  "@types/jest": "^29.5.14",
46
58
  "jest": "^29.7.0",
59
+ "semantic-release": "^24.2.9",
47
60
  "ts-jest": "^29.3.0",
48
61
  "ts-node": "^10.9.2",
49
62
  "tsup": "^8.4.0",