-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.73 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.73 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
{
"name": "understand-anything",
"private": true,
"type": "module",
"description": "An open-source tool combining LLM intelligence + static analysis to produce interactive dashboards for understanding codebases.",
"license": "MIT",
"homepage": "https://github.com/Lum1104/Understand-Anything#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Lum1104/Understand-Anything.git"
},
"bugs": {
"url": "https://github.com/Lum1104/Understand-Anything/issues"
},
"keywords": [
"claude-code",
"codebase-analysis",
"knowledge-graph",
"tree-sitter",
"llm",
"static-analysis",
"developer-tools",
"code-understanding",
"code-onboarding",
"claude-plugin"
],
"main": ".opencode/plugins/understand-anything.js",
"packageManager": "pnpm@10.6.2+sha512.47870716bea1572b53df34ad8647b42962bc790ce2bf4562ba0f643237d7302a3d6a8ecef9e4bdfc01d23af1969aa90485d4cebb0b9638fa5ef1daef656f6c1b",
"scripts": {
"prepare": "pnpm --filter @understand-anything/core build",
"build": "pnpm -r build",
"test": "vitest run",
"dev:dashboard": "pnpm --filter @understand-anything/dashboard dev",
"lint": "eslint ."
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"eslint": "^9.0.0",
"globals": "^17.6.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.0.0",
"vitest": "^3.1.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp",
"tree-sitter-c",
"tree-sitter-c-sharp",
"tree-sitter-cpp",
"tree-sitter-go",
"tree-sitter-java",
"tree-sitter-javascript",
"tree-sitter-php",
"tree-sitter-python",
"tree-sitter-ruby",
"tree-sitter-rust",
"tree-sitter-typescript"
]
}
}