-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.29 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.29 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
{
"name": "gitsema",
"version": "0.90.11",
"description": "A content-addressed semantic index synchronized with Git's object model.",
"type": "module",
"main": "dist/cli/index.js",
"bin": {
"gitsema": "dist/cli/index.js"
},
"scripts": {
"build": "tsc",
"prepack": "pnpm build",
"dev": "tsx src/cli/index.ts",
"test": "vitest run",
"gen:toc": "node scripts/generate_toc.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jsilvanus/gitsema.git"
},
"keywords": [
"semantic",
"git",
"index",
"content-addressed"
],
"author": "jsilvanus",
"license": "ISC",
"files": [
"dist",
"README.md",
"LICENSE",
"docs"
],
"engines": {
"node": ">=20"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"bugs": {
"url": "https://github.com/jsilvanus/gitsema/issues"
},
"homepage": "https://github.com/jsilvanus/gitsema#readme",
"dependencies": {
"@asteasolutions/zod-to-openapi": "8.5.0",
"@jsilvanus/embedeer": "1.7.1",
"@modelcontextprotocol/sdk": "^1.29.0",
"better-sqlite3": "^12.8.0",
"commander": "^12.1.0",
"drizzle-orm": "^0.31.4",
"express": "^5.2.1",
"express-rate-limit": "8.3.2",
"minimatch": "^9.0.0",
"p-limit": "^7.3.0",
"prom-client": "15.1.3",
"tar-stream": "^3.1.8",
"zod": "^4.3.6"
},
"optionalDependencies": {
"tree-sitter": "^0.25.0",
"tree-sitter-go": "^0.25.0",
"tree-sitter-javascript": "^0.25.0",
"tree-sitter-python": "^0.25.0",
"tree-sitter-rust": "^0.24.0",
"tree-sitter-typescript": "^0.23.2",
"usearch": "^2.21.4"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.3",
"@types/node": "^20.14.0",
"@types/supertest": "^7.2.0",
"@types/tar-stream": "^3.1.4",
"drizzle-kit": "^0.22.7",
"supertest": "^7.2.2",
"tsx": "^4.15.7",
"typescript": "^5.4.5",
"vitest": "^4.1.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"esbuild",
"onnxruntime-node",
"protobufjs",
"sharp",
"tree-sitter",
"tree-sitter-go",
"tree-sitter-javascript",
"tree-sitter-python",
"tree-sitter-rust",
"tree-sitter-typescript",
"usearch"
]
}
}