forked from gleanwork/mcp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.14 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.14 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
{
"name": "glean-mcp-server",
"version": "0.7.1",
"private": true,
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/gleanwork/mcp-server.git"
},
"scripts": {
"build": "pnpm -r build",
"test": "pnpm -r test",
"lint": "npm-run-all --sequential lint:*",
"lint:workspaces": "pnpm -r lint",
"lint:package-json": "sort-package-json",
"format": "pnpm -r format",
"release": "pnpm -r release && release-it"
},
"devDependencies": {
"@release-it-plugins/workspaces": "^4.2.0",
"npm-run-all": "^4.1.5",
"release-it": "^17.0.0",
"sort-package-json": "^3.2.1",
"vitest": "^3.2.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"msw"
]
},
"release-it": {
"npm": {
"publish": false
},
"git": {
"tagName": "v${version}",
"requireCleanWorkingDir": false
},
"plugins": {
"@release-it-plugins/workspaces": true,
"@release-it-plugins/lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
}
}
}