@github-tools/sdk 1.1.0 → 1.3.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/package.json CHANGED
@@ -1,23 +1,29 @@
1
1
  {
2
2
  "name": "@github-tools/sdk",
3
- "version": "1.1.0",
3
+ "version": "1.3.0",
4
4
  "description": "GitHub tools for the Vercel AI SDK, wrap GitHub's API as AI SDK tools ready to plug into any agent",
5
5
  "author": "HugoRCD <hugo.richard@vercel.com",
6
6
  "repository": {
7
7
  "type": "git",
8
- "url": "git+https://github.com/HugoRCD/github-tools.git",
8
+ "url": "git+https://github.com/vercel-labs/github-tools.git",
9
9
  "directory": "packages/github-tools"
10
10
  },
11
- "homepage": "https://github.com/HugoRCD/github-tools",
11
+ "homepage": "https://github.com/vercel-labs/github-tools",
12
12
  "bugs": {
13
- "url": "https://github.com/HugoRCD/github-tools/issues"
13
+ "url": "https://github.com/vercel-labs/github-tools/issues"
14
14
  },
15
15
  "type": "module",
16
- "sideEffects": false,
16
+ "sideEffects": [
17
+ "./dist/agents-*.mjs"
18
+ ],
17
19
  "exports": {
18
20
  ".": {
19
21
  "types": "./dist/index.d.mts",
20
22
  "import": "./dist/index.mjs"
23
+ },
24
+ "./workflow": {
25
+ "types": "./dist/workflow.d.mts",
26
+ "import": "./dist/workflow.mjs"
21
27
  }
22
28
  },
23
29
  "main": "./dist/index.mjs",
@@ -31,20 +37,34 @@
31
37
  "ai-sdk",
32
38
  "github",
33
39
  "tools",
34
- "agent"
40
+ "agent",
41
+ "workflow",
42
+ "durable"
35
43
  ],
36
44
  "license": "MIT",
37
45
  "dependencies": {
38
- "@octokit/rest": "^22.0.1"
46
+ "octokit": "^5.0.5"
39
47
  },
40
48
  "peerDependencies": {
41
49
  "ai": "^6.0.97",
42
- "zod": "^4.3.6"
50
+ "zod": "^4.3.6",
51
+ "workflow": "^4.2.0-beta.76",
52
+ "@workflow/ai": "^4.1.0-beta.60"
53
+ },
54
+ "peerDependenciesMeta": {
55
+ "workflow": {
56
+ "optional": true
57
+ },
58
+ "@workflow/ai": {
59
+ "optional": true
60
+ }
43
61
  },
44
62
  "devDependencies": {
45
63
  "@types/node": "^24.10.13",
64
+ "eslint": "^9.19.0",
46
65
  "tsdown": "^0.20.3",
47
- "typescript": "^5.9.3"
66
+ "typescript": "^5.9.3",
67
+ "typescript-eslint": "^8.24.0"
48
68
  },
49
69
  "publishConfig": {
50
70
  "access": "public"
@@ -52,7 +72,8 @@
52
72
  "scripts": {
53
73
  "build": "tsdown",
54
74
  "dev": "tsdown --watch",
55
- "lint": "tsc --noEmit",
75
+ "lint": "eslint .",
76
+ "lint:fix": "eslint . --fix",
56
77
  "typecheck": "tsc --noEmit"
57
78
  }
58
79
  }