-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.37 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.37 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
{
"name": "skannr",
"version": "0.1.2",
"description": "A universal tool to analyze any codebase and generate semantic skeletons for AI agents",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"skannr": "dist/cli.js",
"skannr-benchmark": "dist/benchmark.js",
"skannr-agent": "dist/agent-cli.js",
"skannr-mcp": "dist/mcp-cli.js"
},
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint src --ext .ts",
"start": "npm run build && node dist/cli.js",
"cli": "npm run build && node dist/cli.js",
"benchmark": "npm run build && node dist/benchmark.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"typescript",
"code-analysis",
"skeleton",
"ast"
],
"author": "",
"license": "MIT",
"dependencies": {
"@google/generative-ai": "^0.21.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"chokidar": "^4.0.3",
"commander": "^12.1.0",
"ignore": "^7.0.5",
"tree-sitter": "^0.25.0",
"tree-sitter-python": "^0.25.0",
"ts-morph": "^21.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}