-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.04 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
{
"name": "@dstwn/agentmap-php",
"version": "1.3.2-1",
"publishConfig": {
"access": "public"
},
"description": "A fork of agentmap adding PHP/Laravel support — the repo map your coding agent is forced to use. Estimated ~98% fewer context tokens to understand a PHP/Laravel or TS/JS codebase. A queryable, ranked code-relationship map (tree-sitter-php + ts-morph): PageRank hubs, symbol ranking, token-budgeted digest, a single --any router, Laravel awareness (facades, Eloquent, routes, Blade, Livewire, DDD, Artisan, middleware, migrations), wired into the agent loop via post-commit auto-refresh and a PreToolUse hook.",
"type": "module",
"bin": {
"agentmap": "agentmap.mjs"
},
"main": "agentmap.mjs",
"files": [
"agentmap.mjs",
"mcp.mjs",
"src",
"hooks",
"skills",
"NOTICE"
],
"scripts": {
"map": "node agentmap.mjs",
"test": "node --test test/*.test.mjs test/**/*.test.mjs",
"eval": "node eval/eval.mjs",
"bench": "node benchmark/bench.mjs --repo laravel-framework"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"tree-sitter": "^0.22.4",
"tree-sitter-php": "^0.22.6",
"ts-morph": "28.0.0"
},
"overrides": {
"tree-sitter-php": {
"tree-sitter": "^0.22.4"
}
},
"devDependencies": {
"c8": "11.0.0"
},
"keywords": [
"agentmap",
"repo-map",
"repomap",
"code-map",
"tree-sitter",
"tree-sitter-php",
"php",
"laravel",
"blade",
"livewire",
"eloquent",
"ts-morph",
"typescript",
"javascript",
"pagerank",
"static-analysis",
"ast",
"code-graph",
"dependency-graph",
"ai-agent",
"coding-agent",
"llm",
"claude",
"aider",
"context"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dstwn/agentmap-php.git"
},
"homepage": "https://github.com/dstwn/agentmap-php#readme",
"bugs": {
"url": "https://github.com/dstwn/agentmap-php/issues"
},
"author": "Raymond Surya Chin (original); agentmap-php fork by dstwn",
"license": "MIT"
}