-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.7 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.7 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
106
107
{
"name": "@sunilp-org/jam-cli",
"version": "0.11.4",
"description": "Developer-first AI CLI for cross-language code intelligence. Trace call graphs across Java, SQL, Python, TypeScript. Impact analysis, agentic execution, code review, git tools, 40+ commands. Works with Ollama, Copilot, OpenAI, Anthropic.",
"type": "module",
"license": "MIT",
"author": {
"name": "Sunil Prakash",
"email": "prakashsunil@proton.me",
"url": "https://github.com/sunilp"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sunilp/jam-cli.git"
},
"bugs": {
"url": "https://github.com/sunilp/jam-cli/issues"
},
"homepage": "https://github.com/sunilp/jam-cli#readme",
"keywords": [
"ai",
"cli",
"developer-tools",
"code-intelligence",
"call-graph",
"impact-analysis",
"cross-language",
"trace",
"agentic",
"code-review",
"ollama",
"copilot",
"openai",
"anthropic",
"typescript",
"python",
"java",
"sql",
"terminal",
"llm"
],
"engines": {
"node": ">=20"
},
"bin": {
"jam": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"dev": "tsx src/index.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts,.tsx",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"clean": "rm -rf dist"
},
"optionalDependencies": {
"keytar": "^7.9.0",
"node-llama-cpp": "^3.0.0",
"tree-sitter": "^0.25.0",
"tree-sitter-java": "^0.23.5",
"tree-sitter-python": "^0.25.0",
"tree-sitter-sql": "^0.1.0",
"tree-sitter-typescript": "^0.23.2"
},
"dependencies": {
"@github/copilot-sdk": "^0.1.32",
"better-sqlite3": "^12.8.0",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"cosmiconfig": "^9.0.0",
"ink": "^5.0.1",
"ink-text-input": "^6.0.0",
"js-yaml": "^4.1.1",
"marked": "^12.0.0",
"marked-terminal": "^7.1.0",
"minimatch": "^9.0.5",
"pdfkit": "^0.17.2",
"react": "^18.3.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.14.0",
"@types/pdfkit": "^0.17.5",
"@types/react": "^18.3.3",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"msw": "^2.3.1",
"prettier": "^3.3.2",
"tsx": "^4.16.0",
"typescript": "^5.5.2",
"undici": "^6.19.2",
"vitest": "^1.6.0"
}
}