-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.19 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
{
"name": "composto-ai",
"version": "0.12.2",
"description": "Proactive AI team companion — less tokens, more insight",
"type": "module",
"bin": {
"composto": "dist/index.js",
"composto-mcp": "dist/mcp/server.js"
},
"files": [
"dist",
"grammars",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/mertcanaltin/composto"
},
"scripts": {
"build": "tsup",
"prepublishOnly": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"dev": "tsx src/index.ts"
},
"keywords": [
"ai",
"coding",
"companion",
"proactive"
],
"author": "Mert Can Altin",
"license": "MIT",
"packageManager": "pnpm@10.30.1",
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.5.2",
"@types/picomatch": "^4.0.3",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vitest": "^4.1.4"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.87.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"better-sqlite3": "^11.10.0",
"ignore": "^7.0.5",
"picomatch": "^4.0.4",
"web-tree-sitter": "^0.26.8",
"yaml": "^2.8.3",
"zod": "^4.3.6"
}
}