-
Notifications
You must be signed in to change notification settings - Fork 155
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.97 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
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@inkeep/agents-work-apps",
"version": "0.78.2",
"description": "First party integrations for Inkeep Agents",
"type": "module",
"license": "SEE LICENSE IN LICENSE.md",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./github": {
"types": "./dist/github/index.d.ts",
"import": "./dist/github/index.js"
},
"./slack": {
"types": "./dist/slack/index.d.ts",
"import": "./dist/slack/index.js"
}
},
"scripts": {
"knip": "knip --directory ../.. --workspace packages/agents-work-apps --dependencies",
"build": "tsdown",
"dev": "pnpm build --watch",
"test": "vitest --run",
"lint": "biome lint --error-on-warnings",
"lint:fix": "biome check --write src",
"format": "biome format --write src",
"format:check": "biome format src",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@inkeep/agents-core": "workspace:*",
"@modelcontextprotocol/sdk": "^1.26.0",
"@nangohq/node": "^0.69.41",
"@octokit/auth-app": "^8.1.2",
"@octokit/rest": "^22.0.1",
"@opentelemetry/api": "^1.9.0",
"@slack/socket-mode": "^2.0.5",
"@slack/types": "^2.18.0",
"@slack/web-api": "^7.9.1",
"drizzle-orm": "^0.44.7",
"fetch-to-node": "^2.1.0",
"hono": "^4.12.25",
"jose": "^6.1.0",
"minimatch": "^10.2.1",
"oxfmt": "^0.42.0",
"slack-block-builder": "^2.8.0"
},
"peerDependencies": {
"@hono/zod-openapi": "^1.1.5",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^20.11.24",
"typescript": "^6.0.2",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=22.18.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist",
"README.md",
"LICENSE.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/inkeep/agents.git",
"directory": "packages/agents-workapps"
}
}