-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.61 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
{
"name": "@pleaseai/csp",
"type": "module",
"version": "0.0.0",
"description": "Fast and Accurate Code Search for Agents — TypeScript port of MinishLab/semble",
"author": "Minsu Lee <minsu.lee@dietfriends.kr>",
"license": "MIT",
"homepage": "https://github.com/pleaseai/code-search",
"repository": {
"type": "git",
"url": "https://github.com/pleaseai/code-search.git"
},
"bugs": {
"url": "https://github.com/pleaseai/code-search/issues"
},
"keywords": [
"code-search",
"hybrid-search",
"semantic-search",
"bm25",
"embeddings",
"mcp",
"agent",
"rag",
"tree-sitter"
],
"packageManager": "bun@1.3.10",
"engines": {
"node": ">=22.0.0",
"bun": ">=1.3.10"
},
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"bin": {
"csp": "./dist/cli.mjs"
},
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint . --cache",
"lint:fix": "eslint . --fix --cache",
"test": "bun test",
"prepublishOnly": "bun run build"
},
"dependencies": {
"@huggingface/transformers": "^4.2.0",
"@kreuzberg/tree-sitter-language-pack": "^1.8.1",
"@modelcontextprotocol/sdk": "^1.29.0",
"chokidar": "^5.0.0",
"commander": "^14.0.3",
"ignore": "^7.0.5"
},
"devDependencies": {
"@pleaseai/eslint-config": "^0.0.3",
"@types/bun": "latest",
"eslint": "^10.0.3",
"tsdown": "^0.21.5",
"typescript": "^6.0.2"
}
}