-
-
Notifications
You must be signed in to change notification settings - Fork 100
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 1.91 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 1.91 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
{
"name": "codesight",
"version": "1.14.0",
"description": "See your codebase clearly. Universal AI context generator that maps routes, schema, components, dependencies, and more for Claude Code, Cursor, Copilot, Codex, and any AI coding tool.",
"main": "dist/index.js",
"bin": {
"codesight": "dist/index.js"
},
"exports": {
".": "./dist/index.js",
"./plugins/terraform": "./dist/plugins/terraform/index.js",
"./dist/*": "./dist/*"
},
"type": "module",
"scripts": {
"build": "tsc",
"prepare": "tsc",
"dev": "tsx src/index.ts",
"test": "pnpm build && tsx --test tests/*.test.ts",
"prepublishOnly": "pnpm build"
},
"keywords": [
"ai",
"cli",
"context",
"codebase",
"claude",
"cursor",
"copilot",
"codex",
"windsurf",
"cline",
"developer-tools",
"code-analysis",
"llm",
"anthropic",
"openai",
"mcp",
"context-engineering",
"token-savings",
"repo-map"
],
"author": {
"name": "Kailesk Khumar",
"email": "kailesk@houseofmvps.com",
"url": "https://www.kailxlabs.co"
},
"contributors": [
{
"name": "HouseofMVPs",
"url": "https://houseofmvps.com"
},
{
"name": "Kailxlabs",
"url": "https://www.kailxlabs.co"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Houseofmvps/codesight"
},
"homepage": "https://github.com/Houseofmvps/codesight#readme",
"bugs": {
"url": "https://github.com/Houseofmvps/codesight/issues"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/Houseofmvps"
},
{
"type": "individual",
"url": "https://www.kailxlabs.co"
}
],
"devDependencies": {
"typescript": "^5.7.0",
"tsx": "^4.19.0",
"@types/node": "^22.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"eval",
"assets"
]
}