-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.13 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
{
"name": "driftal-dev",
"version": "0.1.9",
"description": "Driftal CLI and MCP server for local first, blazing-fast code review",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/driftaldev/cli.git"
},
"homepage": "https://github.com/driftaldev/cli#readme",
"bugs": {
"url": "https://github.com/driftaldev/cli/issues"
},
"keywords": [
"cli",
"developer-tools",
"mcp",
"driftal"
],
"author": "Jay Malve",
"bin": {
"driftal-dev": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"main": "dist/index.js",
"exports": {
".": "./dist/index.js"
},
"scripts": {
"build": "bun build ./src/cli/index.ts --target node --outdir dist --entry-naming=index.js",
"dev": "bun --watch ./src/cli/index.ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "bun install && bun run build"
},
"dependencies": {
"@anthropic-ai/claude-code": "^2.0.29",
"@anthropic-ai/sdk": "^0.32.1",
"@google/genai": "^0.2.0",
"@inferedge/moss": "^1.0.0-beta.1",
"@mastra/core": "^0.23.3",
"@modelcontextprotocol/sdk": "^1.20.1",
"@morphllm/morphsdk": "^0.2.15",
"chalk": "^5.3.0",
"cheerio": "^1.0.0",
"chokidar": "^3.6.0",
"cli-table3": "^0.6.5",
"commander": "^11.1.0",
"diff": "^8.0.2",
"ignore": "^5.3.1",
"ink": "^5.2.0",
"inquirer": "^12.2.0",
"inquirer-search-list": "^1.2.6",
"ioredis": "^5.3.2",
"node-notifier": "^10.0.1",
"openai": "^4.73.0",
"ora": "^7.0.1",
"prettier": "^3.6.2",
"prompts": "^2.4.2",
"react": "^18.3.1",
"simple-git": "^3.22.0",
"undici": "^6.19.8",
"web-tree-sitter": "^0.25.10",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/diff": "^8.0.0",
"@types/node": "^20.11.30",
"@types/prompts": "^2.4.9",
"@types/react": "^18.3.11",
"react-devtools-core": "^4.28.5",
"tree-sitter": "^0.25.0",
"tree-sitter-go": "^0.25.0",
"tree-sitter-python": "^0.25.0",
"tree-sitter-rust": "^0.24.0",
"typescript": "^5.4.2"
},
"engines": {
"node": ">=18.0.0"
}
}