-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.74 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.74 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
{
"name": "@renseiai/agentfactory-code-intelligence",
"version": "0.8.22",
"type": "module",
"description": "Code intelligence for AgentFactory — tree-sitter AST parsing, BM25 search, incremental indexing, memory deduplication",
"author": "Rensei AI (https://rensei.ai)",
"license": "MIT",
"engines": {
"node": ">=22.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RenseiAI/agentfactory.git",
"directory": "packages/code-intelligence"
},
"homepage": "https://github.com/RenseiAI/agentfactory/tree/main/packages/code-intelligence",
"bugs": {
"url": "https://github.com/RenseiAI/agentfactory/issues"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"code-intelligence",
"tree-sitter",
"bm25",
"search",
"agent",
"ast"
],
"main": "./dist/src/index.js",
"module": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js",
"default": "./dist/src/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"dependencies": {
"xxhash-wasm": "^1.1.0"
},
"peerDependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.7",
"zod": "^4.3.6"
},
"peerDependenciesMeta": {
"@anthropic-ai/claude-agent-sdk": {
"optional": true
},
"zod": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^22.5.4",
"typescript": "^5.7.3",
"vitest": "^3.2.3"
},
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest",
"clean": "rm -rf dist",
"prepublishOnly": "pnpm clean && pnpm build"
}
}