@elizaos/plugin-github 1.2.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/.npmignore +5 -0
- package/README.md +658 -0
- package/dist/__tests__/e2e/intelligent-analysis.test.d.ts +15 -0
- package/dist/actions/activity.d.ts +4 -0
- package/dist/actions/autoCoder.d.ts +3 -0
- package/dist/actions/branches.d.ts +4 -0
- package/dist/actions/issues.d.ts +5 -0
- package/dist/actions/pullRequests.d.ts +5 -0
- package/dist/actions/repository.d.ts +5 -0
- package/dist/actions/search.d.ts +2 -0
- package/dist/actions/stats.d.ts +3 -0
- package/dist/actions/users.d.ts +4 -0
- package/dist/actions/webhooks.d.ts +5 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.js +10586 -0
- package/dist/index.js.map +41 -0
- package/dist/providers/github.d.ts +6 -0
- package/dist/services/github.d.ts +342 -0
- package/dist/test-exports.d.ts +4 -0
- package/dist/tests.d.ts +20 -0
- package/dist/types.d.ts +290 -0
- package/package.json +98 -0
package/package.json
ADDED
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@elizaos/plugin-github",
|
|
3
|
+
"description": "Comprehensive GitHub integration plugin for ElizaOS with repository management, issue tracking, and PR workflows",
|
|
4
|
+
"version": "1.2.0",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"module": "dist/index.js",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"packageType": "plugin",
|
|
10
|
+
"platform": "node",
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"author": "elizaOS",
|
|
13
|
+
"keywords": [
|
|
14
|
+
"plugin",
|
|
15
|
+
"elizaos"
|
|
16
|
+
],
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "https://github.com/elizaos-plugins/plugin-github"
|
|
20
|
+
},
|
|
21
|
+
"homepage": "https://elizaos.ai",
|
|
22
|
+
"bugs": {
|
|
23
|
+
"url": "https://github.com/elizaos-plugins/plugin-github/issues"
|
|
24
|
+
},
|
|
25
|
+
"exports": {
|
|
26
|
+
"./package.json": "./package.json",
|
|
27
|
+
".": {
|
|
28
|
+
"import": {
|
|
29
|
+
"types": "./dist/index.d.ts",
|
|
30
|
+
"default": "./dist/index.js"
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"files": [
|
|
35
|
+
"dist",
|
|
36
|
+
"README.md",
|
|
37
|
+
".npmignore",
|
|
38
|
+
"package.json",
|
|
39
|
+
"tsup.config.ts"
|
|
40
|
+
],
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"@elizaos/core": "^1.2.1",
|
|
43
|
+
"@octokit/rest": "^20.1.1",
|
|
44
|
+
"@octokit/types": "^13.5.0",
|
|
45
|
+
"deprecation": "^2.3.1",
|
|
46
|
+
"ngrok": "^5.0.0-beta.2",
|
|
47
|
+
"tailwindcss": "^4.1.10",
|
|
48
|
+
"vite": "^6.3.5",
|
|
49
|
+
"zod": "^3.25.67"
|
|
50
|
+
},
|
|
51
|
+
"peerDependencies": {},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@cypress/react": "^9.0.1",
|
|
54
|
+
"@testing-library/cypress": "^10.0.3",
|
|
55
|
+
"@types/node": "^20.0.0",
|
|
56
|
+
"axios": "^1.6.5",
|
|
57
|
+
"cypress": "^14.5.0",
|
|
58
|
+
"dotenv": "16.4.5",
|
|
59
|
+
"prettier": "3.5.3",
|
|
60
|
+
"tsx": "^4.19.2",
|
|
61
|
+
"typescript": "5.8.3"
|
|
62
|
+
},
|
|
63
|
+
"scripts": {
|
|
64
|
+
"build": "bun run build.ts",
|
|
65
|
+
"dev": "bun run build.ts --watch",
|
|
66
|
+
"clean": "rm -rf dist && rm -rf .turbo",
|
|
67
|
+
"lint": "eslint src --fix && prettier --write ./src",
|
|
68
|
+
"typecheck": "tsc --noEmit",
|
|
69
|
+
"test": "bun test && elizaos test"
|
|
70
|
+
},
|
|
71
|
+
"publishConfig": {
|
|
72
|
+
"access": "public"
|
|
73
|
+
},
|
|
74
|
+
"resolutions": {
|
|
75
|
+
"zod": "3.25.67"
|
|
76
|
+
},
|
|
77
|
+
"agentConfig": {
|
|
78
|
+
"pluginType": "elizaos:plugin:1.0.0",
|
|
79
|
+
"pluginParameters": {
|
|
80
|
+
"GITHUB_TOKEN": {
|
|
81
|
+
"type": "string",
|
|
82
|
+
"description": "GitHub Personal Access Token or Fine-grained token",
|
|
83
|
+
"required": true
|
|
84
|
+
},
|
|
85
|
+
"GITHUB_OWNER": {
|
|
86
|
+
"type": "string",
|
|
87
|
+
"description": "Default GitHub username/organization for operations",
|
|
88
|
+
"required": false
|
|
89
|
+
},
|
|
90
|
+
"GITHUB_WEBHOOK_SECRET": {
|
|
91
|
+
"type": "string",
|
|
92
|
+
"description": "Secret for verifying GitHub webhook signatures",
|
|
93
|
+
"required": false
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
"gitHead": "d5bd5c43bfebeb7ac02f9e029f924cb6cd5c2ec7"
|
|
98
|
+
}
|