-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.27 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 3.27 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
{
"name": "githits",
"description": "The code context layer for AI coding agents",
"version": "0.6.6",
"mcpName": "com.githits/githits",
"type": "module",
"workspaces": [
"packages/*"
],
"files": [
"dist",
"LICENSE",
".plugin",
".claude-plugin",
".mcp.json",
"server.json",
"gemini-extension.json",
"GEMINI.md",
"plugins",
"skills",
"commands"
],
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./package.json": "./package.json"
},
"bin": {
"githits": "dist/cli.js"
},
"scripts": {
"build": "bunup && bun -e \"import { chmodSync } from 'node:fs'; chmodSync('dist/cli.js', 0o755);\"",
"dev": "bun run ./src/cli.ts",
"inspector": "npx @modelcontextprotocol/inspector bun run dev mcp",
"smoke:cli": "bun run scripts/cli-smoke.ts",
"smoke:cli:built": "bun run scripts/cli-smoke.ts --mode unauthenticated --cli-entry dist/cli.js",
"smoke:mcp": "bun run scripts/mcp-smoke.ts",
"smoke:mcp:built": "bun run scripts/mcp-smoke.ts --mode registration --cli-entry dist/cli.js",
"smoke:proxy-node": "bun run scripts/run-proxy-node-smoke.ts",
"validate:packages": "bun run scripts/validate-public-packages.ts",
"validate:packages:mcp-publish": "bun run scripts/validate-public-packages.ts --mcp-publish-dry-run",
"sync:claude-skills": "bun run scripts/sync-claude-skill-assets.ts",
"audit:pkg-ecosystems": "bun run scripts/pkg-ecosystem-audit.ts",
"agent:e2e": "bun run scripts/agent-eval.ts",
"agent:e2e:report": "bun run scripts/agent-eval-report.ts",
"agent:session": "bun run scripts/agent-session.ts",
"eval": "bun run eval/run.ts",
"test": "bun test",
"typecheck": "tsc",
"format": "biome format --write .",
"format:check": "biome format .",
"lint": "biome lint .",
"prepare": "husky",
"prepack": "bun run scripts/sync-claude-skill-assets.ts",
"postpack": "bun run scripts/sync-claude-skill-assets.ts --clean",
"prepublishOnly": "bun run build"
},
"keywords": [
"githits",
"code-examples",
"search",
"cli",
"mcp",
"model-context-protocol",
"ai",
"llm"
],
"author": "GitHits",
"license": "Apache-2.0",
"homepage": "https://githits.com",
"repository": {
"type": "git",
"url": "git+https://github.com/githits-com/githits-cli.git"
},
"bugs": {
"url": "https://github.com/githits-com/githits-cli/issues"
},
"engines": {
"node": "^20.18.1 || >=22.13.0"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@inquirer/checkbox": "5.2.1",
"@inquirer/confirm": "6.1.1",
"@inquirer/core": "11.2.1",
"@inquirer/select": "5.2.1",
"@modelcontextprotocol/sdk": "^1.29.0",
"@napi-rs/keyring": "^1.3.0",
"commander": "15.0.0",
"jsonc-parser": "^3.3.1",
"open": "^11.0.0",
"semver": "7.8.5",
"smol-toml": "^1.6.1",
"undici": "7.28.0",
"yaml": "^2.9.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "2.5.5",
"@types/bun": "latest",
"@types/semver": "^7.7.1",
"bunup": "^0.16.32",
"husky": "^9.1.7",
"lint-staged": "17.2.0",
"typescript": "^7.0.2"
}
}