-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.83 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
{
"name": "@shihwesley/agent-reverse",
"version": "2.1.0",
"description": "Surgical integration tool - extract features from agent plugins without bloat",
"type": "module",
"main": "dist/server.js",
"bin": {
"agent-reverse": "dist/cli.js",
"agent-reverse-server": "dist/server.js"
},
"files": [
"dist",
"skills",
"agents",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shihwesley/agent-reverse.git"
},
"bugs": {
"url": "https://github.com/shihwesley/agent-reverse/issues"
},
"homepage": "https://github.com/shihwesley/agent-reverse#readme",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/server.ts",
"start": "node dist/server.js",
"inspect": "npx @modelcontextprotocol/inspector node dist/server.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:e2e": "vitest run tests/e2e"
},
"keywords": [
"mcp",
"model-context-protocol",
"agent",
"skills",
"claude",
"cursor",
"reverse-engineering"
],
"author": "shihwesley",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"cheerio": "^1.1.2",
"js-yaml": "^4.1.1",
"simple-git": "^3.27.0",
"tree-sitter": "^0.21.1",
"tree-sitter-typescript": "^0.23.2",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.19.7",
"@vitest/coverage-v8": "^4.0.17",
"memfs": "^4.56.9",
"msw": "^2.12.7",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^4.0.17"
},
"engines": {
"node": ">=20.0.0"
}
}