-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.58 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@ktn1234/plugin-github",
"version": "0.0.0",
"description": "Github Plugin for the Maiar AI Agent Framework",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"maiar",
"ai",
"agent",
"framework",
"plugin",
"github"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ktn1234/plugin-github.git"
},
"author": "ktn1234",
"license": "MIT",
"bugs": {
"url": "https://github.com/ktn1234/plugin-github/issues"
},
"homepage": "https://github.com/ktn1234/plugin-github#readme",
"scripts": {
"dev": "tsup --config tsup.config.ts --watch",
"lint": "tsc --project tsconfig.json",
"lint:emit": "tsc --project tsconfig.json --noEmit false",
"build": "tsup --config tsup.config.ts",
"clean": "rm -rf dist",
"prepublishOnly": "pnpm run build"
},
"peerDependencies": {
"@maiar-ai/core": "^0.16.1"
},
"dependencies": {
"@octokit/core": "6.1.4",
"@octokit/rest": "21.1.1",
"@octokit/webhooks": "13.7.5",
"express": "4.21.2",
"zod": "3.24.1"
},
"devDependencies": {
"@octokit/webhooks-types": "7.6.1",
"@types/express": "5.0.0",
"@types/node": "22.13.1",
"tsup": "8.3.6",
"typescript": "5.7.3"
}
}