forked from lyy0709/ContextWeaver
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.44 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.44 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
{
"name": "@haurynlee/contextweaver",
"version": "1.3.1",
"description": "Context engine for AI coding agents with CLI retrieval, prompt-context preparation, and bundled Skills",
"license": "MIT",
"author": "haurynlee",
"repository": {
"type": "git",
"url": "git+https://github.com/GowayLee/ContextWeaver.git"
},
"homepage": "https://github.com/GowayLee/ContextWeaver#readme",
"bugs": {
"url": "https://github.com/GowayLee/ContextWeaver/issues"
},
"private": false,
"type": "module",
"bin": {
"contextweaver": "dist/index.js",
"cw": "dist/index.js"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"skills/**/*"
],
"engines": {
"node": ">=20"
},
"keywords": [
"ai",
"agent",
"semantic-search",
"code-search",
"skills",
"prompt-context",
"tree-sitter"
],
"scripts": {
"build": "tsup src/index.ts --format esm --dts --out-dir dist --sourcemap --clean",
"build:release": "tsup src/index.ts --format esm --dts --out-dir dist --clean",
"dev": "tsup src/index.ts --format esm --dts --out-dir dist --sourcemap --watch",
"fmt": "biome check --write ./src",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@keqingmoe/tree-sitter": "^0.26.2",
"@lancedb/lancedb": "^0.22.0",
"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",
"vitest": "^4.0.18"
},
"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"
]
}
}