-
-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.37 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.37 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
{
"name": "codesight",
"version": "1.13.1",
"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": "Houseofmvps",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Houseofmvps/codesight"
},
"homepage": "https://github.com/Houseofmvps/codesight#readme",
"devDependencies": {
"typescript": "^5.7.0",
"tsx": "^4.19.0",
"@types/node": "^22.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"eval",
"assets"
]
}