-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.65 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.65 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
{
"name": "glean-mcp-server",
"version": "0.10.1",
"private": true,
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/gleanwork/mcp-server.git"
},
"scripts": {
"build": "pnpm -r build",
"test": "pnpm -r test",
"test:all": "pnpm -r test && pnpm lint",
"lint": "npm-run-all --sequential lint:*",
"lint:workspaces": "pnpm -r lint",
"lint:package-json": "sort-package-json",
"format": "prettier --write --ignore-unknown .",
"release": "pnpm exec release-it",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.1",
"@release-it-plugins/lerna-changelog": "^8.0.1",
"@release-it-plugins/workspaces": "^5.0.3",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.48.1",
"eslint": "^9.39.1",
"globals": "^16.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.7.3",
"release-it": "^19.0.6",
"sort-package-json": "^3.5.0",
"vitepress": "^1.6.4",
"vitest": "^4.0.8"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"msw"
],
"overrides": {
"tar": "^7.5.4"
}
},
"release-it": {
"npm": 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"
}
}
}