@grunnverk/github-tools 1.0.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.
- package/LICENSE +190 -0
- package/README.md +314 -0
- package/dist/errors.js +124 -0
- package/dist/errors.js.map +1 -0
- package/dist/github.js +1406 -0
- package/dist/github.js.map +1 -0
- package/dist/index.d.ts +230 -0
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -0
- package/dist/issues.js +332 -0
- package/dist/issues.js.map +1 -0
- package/dist/logger.js +15 -0
- package/dist/logger.js.map +1 -0
- package/dist/releaseNotes.js +90 -0
- package/dist/releaseNotes.js.map +1 -0
- package/guide/index.md +78 -0
- package/package.json +80 -0
package/package.json
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@grunnverk/github-tools",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "GitHub API utilities for automation - PR management, issue tracking, workflow monitoring",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"import": "./dist/index.js",
|
|
10
|
+
"types": "./dist/index.d.ts"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"dist",
|
|
15
|
+
"guide"
|
|
16
|
+
],
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "git+https://github.com/grunnverk/github-tools.git"
|
|
20
|
+
},
|
|
21
|
+
"scripts": {
|
|
22
|
+
"build": "npm run lint && tsc --noEmit && vite build",
|
|
23
|
+
"dev": "vite",
|
|
24
|
+
"watch": "vite build --watch",
|
|
25
|
+
"test": "vitest run --coverage",
|
|
26
|
+
"lint": "eslint . --ext .ts",
|
|
27
|
+
"lint:fix": "eslint . --ext .ts --fix",
|
|
28
|
+
"clean": "rm -rf dist",
|
|
29
|
+
"precommit": "npm run clean && npm run build && npm run lint && npm run test",
|
|
30
|
+
"prepublishOnly": "npm run clean && npm run lint && npm run build && npm run test"
|
|
31
|
+
},
|
|
32
|
+
"keywords": [
|
|
33
|
+
"github",
|
|
34
|
+
"github-api",
|
|
35
|
+
"automation",
|
|
36
|
+
"pull-requests",
|
|
37
|
+
"issues",
|
|
38
|
+
"workflows",
|
|
39
|
+
"octokit",
|
|
40
|
+
"github-actions"
|
|
41
|
+
],
|
|
42
|
+
"author": "Tim O'Brien <tobrien@discursive.com>",
|
|
43
|
+
"license": "Apache-2.0",
|
|
44
|
+
"engines": {
|
|
45
|
+
"node": ">=24.0.0"
|
|
46
|
+
},
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"@grunnverk/git-tools": "^1.0.1",
|
|
49
|
+
"@octokit/rest": "^22.0.0"
|
|
50
|
+
},
|
|
51
|
+
"peerDependencies": {
|
|
52
|
+
"winston": "^3.17.0"
|
|
53
|
+
},
|
|
54
|
+
"peerDependenciesMeta": {
|
|
55
|
+
"winston": {
|
|
56
|
+
"optional": true
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
"devDependencies": {
|
|
60
|
+
"@eslint/eslintrc": "^3.3.1",
|
|
61
|
+
"@eslint/js": "^9.33.0",
|
|
62
|
+
"@swc/core": "^1.13.3",
|
|
63
|
+
"@types/node": "^24.2.1",
|
|
64
|
+
"@types/winston": "^2.4.4",
|
|
65
|
+
"@typescript-eslint/eslint-plugin": "^8.39.1",
|
|
66
|
+
"@typescript-eslint/parser": "^8.39.1",
|
|
67
|
+
"@vitest/coverage-v8": "^4.0.13",
|
|
68
|
+
"esbuild": "0.27.2",
|
|
69
|
+
"eslint": "^9.33.0",
|
|
70
|
+
"eslint-plugin-import": "^2.32.0",
|
|
71
|
+
"globals": "^16.3.0",
|
|
72
|
+
"mockdate": "^3.0.5",
|
|
73
|
+
"typescript": "^5.9.2",
|
|
74
|
+
"vite": "^7.1.2",
|
|
75
|
+
"vite-plugin-dts": "^4.3.0",
|
|
76
|
+
"vite-plugin-node": "^7.0.0",
|
|
77
|
+
"vitest": "^4.0.13",
|
|
78
|
+
"winston": "^3.17.0"
|
|
79
|
+
}
|
|
80
|
+
}
|