-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.14 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.14 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
{
"name": "@hsingjui/contextweaver",
"version": "0.0.7",
"description": "A context weaving tool for LLMs",
"license": "MIT",
"author": "hsingjui",
"repository": {
"type": "git",
"url": "git+https://github.com/hsingjui/ContextWeaver.git"
},
"homepage": "https://github.com/hsingjui/ContextWeaver#readme",
"private": false,
"type": "module",
"bin": {
"contextweaver": "dist/index.js",
"cw": "dist/index.js"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsup src/index.ts src/mcp/main.ts --format esm --dts --out-dir dist --sourcemap --clean",
"build:release": "tsup src/index.ts src/mcp/main.ts --format esm --dts --out-dir dist --clean",
"dev": "tsup src/index.ts src/mcp/main.ts --format esm --dts --out-dir dist --sourcemap --watch",
"fmt": "biome check --write ./src"
},
"dependencies": {
"@keqingmoe/tree-sitter": "^0.26.2",
"@lancedb/lancedb": "^0.22.0",
"@modelcontextprotocol/sdk": "^1.25.1",
"better-sqlite3": "^12.2.0",
"cac": "^6.7.14",
"chardet": "^2.1.1",
"dotenv": "^17.2.3",
"fdir": "^6.5.0",
"iconv-lite": "^0.7.1",
"ignore": "^7.0.5",
"p-limit": "^7.2.0",
"pino": "^10.1.0",
"tree-sitter-c": "^0.24.1",
"tree-sitter-c-sharp": "^0.23.1",
"tree-sitter-cpp": "^0.23.4",
"tree-sitter-go": "0.25.0",
"tree-sitter-java": "0.23.5",
"tree-sitter-javascript": "0.25.0",
"tree-sitter-python": "0.25.0",
"tree-sitter-rust": "0.24.0",
"tree-sitter-typescript": "0.23.2",
"zod": "^4.2.1"
},
"devDependencies": {
"@biomejs/biome": "2.3.10",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^24.0.0",
"knip": "^5.78.0",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"@keqingmoe/tree-sitter",
"better-sqlite3",
"esbuild",
"tree-sitter-c",
"tree-sitter-c-sharp",
"tree-sitter-cpp",
"tree-sitter-go",
"tree-sitter-java",
"tree-sitter-javascript",
"tree-sitter-python",
"tree-sitter-rust",
"tree-sitter-typescript"
]
}
}