-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.56 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.56 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
{
"name": "10x-code",
"version": "2.0.2",
"description": "Programming-first context engine for Claude Code — TypeScript-powered codebase indexing, dependency graphing, symbol-level search, and zero-token context injection via hooks.",
"bin": {
"10x-code": "bin/cli.js",
"ccs": "dist/cli.js",
"ccs-install": "bin/cli.js"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"prepublishOnly": "npm run build",
"postinstall": "node bin/cli.js init || echo '\\n⚠ 10x-Code postinstall failed. Run manually: npx 10x-code init\\n'"
},
"files": [
"bin/",
"dist/",
"statusline/",
"skills/",
"agents/",
"templates/",
"references/",
"hooks/",
".mcp.json",
"CLAUDE.md",
"README.md",
"LICENSE",
"SKILLS-TREE.md",
"AGENTS-INDEX.md",
"manifest.json"
],
"keywords": [
"claude-code",
"context-engineering",
"codebase-indexing",
"token-optimization",
"dependency-graph",
"symbol-search",
"programming-first",
"zero-token",
"agent-skill",
"mcp",
"ai-coding",
"claude",
"anthropic"
],
"author": {
"name": "10x.in",
"url": "https://10x.in"
},
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "git+https://github.com/10x-Anit/10x-Code-Context.git"
},
"homepage": "https://10x.in",
"bugs": {
"url": "https://github.com/10x-Anit/10x-Code-Context/issues"
},
"engines": {
"node": ">=16"
},
"devDependencies": {
"typescript": "^5.5.0",
"@types/node": "^20.0.0"
}
}