-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.65 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.65 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
{
"name": "@qodex/cli",
"version": "2.5.0",
"description": "QodeX — Local-first agentic coding CLI for Qwen3-Coder, Claude, GPT, and DeepSeek",
"license": "Apache-2.0",
"author": "7 SEVEN",
"repository": {
"type": "git",
"url": "git+https://github.com/QodeXcli/QodeX.git"
},
"homepage": "https://github.com/QodeXcli/QodeX#readme",
"bugs": {
"url": "https://github.com/QodeXcli/QodeX/issues"
},
"keywords": [
"ai",
"agent",
"coding-agent",
"cli",
"local-first",
"llm",
"lm-studio",
"ollama",
"qwen",
"claude",
"mcp",
"tui"
],
"type": "module",
"bin": {
"qx": "./bin/qodex.mjs",
"qodex": "./bin/qodex.mjs"
},
"main": "./dist/index.js",
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc -p tsconfig.json && chmod +x bin/qodex.mjs",
"start": "node bin/qodex.mjs",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:scripts": "for f in test/artifact-preview test/artifact-review test/artifact-store test/completion-gate test/custom-config test/edit-approval test/efficiency-profile test/explain-stream-error test/gateways test/model-resolve test/prompt-tiering test/read-ledger test/security-scan test/syntax-check test/task-addenda test/tool-relevance test/viewport test/web-backends; do echo \"\\n# $f\"; tsx \"$f.test.ts\" || exit 1; done",
"test:all": "npm run test && npm run test:scripts",
"eval": "npm run build && node eval/run.mjs"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.32.1",
"better-sqlite3": "^11.5.0",
"commander": "^12.1.0",
"cross-spawn": "^7.0.6",
"diff": "^8.0.3",
"ink": "^5.0.1",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"js-yaml": "^4.1.1",
"openai": "^4.73.0",
"react": "^18.3.1",
"simple-git": "^3.27.0",
"undici": "^6.26.0",
"uuid": "^11.0.3",
"web-tree-sitter": "^0.25.10",
"zod": "^3.23.8"
},
"optionalDependencies": {
"gpt-tokenizer": "^2.5.0",
"mysql2": "^3.11.4",
"pg": "^8.13.1",
"playwright": "^1.49.0",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/cross-spawn": "^6.0.6",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.10.0",
"@types/react": "^18.3.12",
"@types/uuid": "^10.0.0",
"@vitest/coverage-v8": "^2.1.9",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.6"
},
"engines": {
"node": ">=20.0.0"
},
"files": [
"bin",
"dist",
"grammars",
"prompts",
"mcp-templates",
"examples/skills",
"examples/commands",
"README.md",
"LICENSE"
]
}