-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.94 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.94 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
{
"name": "nex-code",
"version": "0.5.16",
"description": "Run 400B+ open coding models on your codebase without the hardware bill. Ollama Cloud first — OpenAI, Anthropic, and Gemini when you need them.",
"bin": {
"nex-code": "./dist/nex-code.js"
},
"files": [
"dist/",
"examples/",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"start": "node dist/nex-code.js",
"build": "node scripts/build.js",
"dev": "node scripts/build.js --dev",
"test": "jest --forceExit --maxWorkers=50%",
"test:orchestrator": "jest tests/orchestrator.test.js --forceExit",
"coverage": "jest --coverage --forceExit",
"test:watch": "jest --watch",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"scan:secrets": "node scripts/secret-scan.js --staged",
"install-hooks": "ln -sf ../../hooks/pre-commit .git/hooks/pre-commit && chmod +x .git/hooks/pre-commit && ln -sf ../../hooks/pre-push .git/hooks/pre-push && chmod +x .git/hooks/pre-push && ln -sf ../../hooks/post-merge .git/hooks/post-merge && chmod +x .git/hooks/post-merge && echo 'Hooks installed (pre-commit, pre-push, post-merge).'",
"prepublishOnly": "npm run build && npm test",
"merge-to-main": "bash scripts/merge-to-main.sh",
"improve": "node scripts/improve.js",
"extract-examples": "node scripts/extract-examples.js",
"benchmark:realworld": "node scripts/benchmark-realworld.js",
"benchmark:reallife": "node scripts/benchmark-reallife.js",
"benchmark:report": "node scripts/benchmark-reallife-report.js",
"improve:reallife": "node scripts/improve-reallife.js",
"benchmark:gate": "node scripts/benchmark-gate.js",
"release": "bash scripts/release.sh"
},
"keywords": [
"ai",
"cli",
"coding",
"agent",
"ollama",
"ollama-cloud",
"openai",
"anthropic",
"gemini",
"llm",
"gpt",
"agentic",
"terminal",
"coding-assistant",
"open-source",
"free",
"qwen3",
"devstral",
"kimi-k2",
"deepseek",
"local-llm",
"mcp",
"model-context-protocol",
"multi-provider"
],
"repository": {
"type": "git",
"url": "https://github.com/hybridpicker/nex-code.git"
},
"bugs": {
"url": "https://github.com/hybridpicker/nex-code/issues"
},
"homepage": "https://github.com/hybridpicker/nex-code#readme",
"license": "MIT",
"dependencies": {
"axios": "^1.15.0",
"dotenv": "^16.4.0",
"pixelmatch": "^7.1.0",
"pngjs": "^7.0.0"
},
"devDependencies": {
"esbuild": "^0.27.3",
"jest": "^29.7.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3"
},
"overrides": {
"brace-expansion": ">=5.0.5",
"picomatch": ">=4.0.4"
},
"jest": {
"coverageThreshold": {
"global": {
"lines": 45,
"functions": 30,
"branches": 35
},
"./cli/sub-agent.js": {
"lines": 70,
"functions": 60,
"branches": 55
}
}
}
}