-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.22 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.22 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@gleanwork/mcp-server-utils",
"version": "0.9.1",
"description": "Shared utilities for MCP server packages",
"keywords": [
"mcp",
"mcp-server"
],
"homepage": "",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/gleanwork/mcp-server.git",
"directory": "packages/mcp-server-utils"
},
"license": "MIT",
"author": "Steve Calvert <steve.calvert@glean.com>",
"type": "module",
"exports": {
"./auth": {
"types": "./build/auth/index.d.ts",
"import": "./build/auth/index.js",
"default": "./build/auth/index.js"
},
"./config": {
"types": "./build/config/index.d.ts",
"import": "./build/config/index.js",
"default": "./build/config/index.js"
},
"./errors": {
"types": "./build/common/errors.d.ts",
"import": "./build/common/errors.js",
"default": "./build/common/errors.js"
},
"./tools/chat": {
"types": "./build/tools/chat.d.ts",
"import": "./build/tools/chat.js",
"default": "./build/tools/chat.js"
},
"./tools/people-profile-search": {
"types": "./build/tools/people_profile_search.d.ts",
"import": "./build/tools/people_profile_search.js",
"default": "./build/tools/people_profile_search.js"
},
"./tools/search": {
"types": "./build/tools/search.d.ts",
"import": "./build/tools/search.js",
"default": "./build/tools/search.js"
},
"./util": {
"types": "./build/util/index.d.ts",
"import": "./build/util/index.js",
"default": "./build/util/index.js"
},
"./logger": {
"types": "./build/log/logger.d.ts",
"import": "./build/log/logger.js",
"default": "./build/log/logger.js"
}
},
"main": "./build/index.js",
"files": [
"build/**/*.js",
"build/**/*.d.ts",
"build/**/*.js.map",
"build/**/*.d.ts.map",
"!build/**/test/**",
"!build/test/**",
"!build/src/**",
"!build/vitest.config.*"
],
"scripts": {
"build": "rimraf build && tsc",
"lint": "npm-run-all --sequential lint:*",
"lint:eslint": "eslint \"src/**/*.ts\" --fix",
"lint:package-json": "sort-package-json",
"lint:ts": "tsc --noEmit",
"prepare": "pnpm run build",
"test": "vitest run",
"test:all": "pnpm lint && pnpm lint:ts && pnpm test",
"test:watch": "vitest",
"watch": "tsc -w"
},
"dependencies": {
"dotenv": "^17.2.3",
"fs-extra": "^11.3.2",
"open": "^11.0.0",
"tldts": "^7.0.19",
"zod": "^4.1.13"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@gleanwork/api-client": "0.13.0",
"@gleanwork/mcp-test-utils": "workspace:*",
"@modelcontextprotocol/sdk": "^1.25.2",
"@types/node": "^25.0.2",
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.52.0",
"console-test-helpers": "^0.3.3",
"eslint": "^9.39.2",
"fixturify": "^3.0.0",
"globals": "^16.5.0",
"msw": "^2.12.7",
"npm-run-all": "^4.1.5",
"rimraf": "^6.1.2",
"sort-package-json": "^3.6.0",
"typescript": "^5.9.3",
"vitest": "^4.0.17"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}