-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.79 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
{
"name": "stackshift",
"version": "1.0.0",
"type": "module",
"description": "Reverse engineering toolkit with manual control - shift gears in your codebase. Transform any application into a fully-specified, spec-driven project with GitHub Spec Kit. Dual workflow: extract business logic for rebuilds (Greenfield) or manage existing code with specs (Brownfield).",
"keywords": [
"claude",
"claude-code",
"claude-plugin",
"reverse-engineering",
"specifications",
"documentation",
"spec-driven",
"github-spec-kit",
"stackshift",
"migration",
"refactoring",
"openapi",
"json-schema"
],
"author": "Jonah Schulte",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jschulte/stackshift.git"
},
"homepage": "https://github.com/jschulte/stackshift#readme",
"bugs": {
"url": "https://github.com/jschulte/stackshift/issues"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"test": "echo \"No tests yet\" && exit 0",
"build:mcp": "cd mcp-server && npm install && npm run build",
"build:cli": "cd cli && go build -o stackshift",
"build:diagrams": "cd scripts && npx tsc",
"build": "npm run build:mcp && npm run build:cli",
"dev:mcp": "cd mcp-server && npm run dev",
"start:mcp": "cd mcp-server && npm start",
"generate-diagrams": "npm run build:diagrams && node scripts/dist/generate-diagrams/index.js",
"generate-diagrams:verbose": "npm run build:diagrams && node scripts/dist/generate-diagrams/index.js --verbose",
"prepare": "husky"
},
"files": [
"plugin/",
".claude-plugin/",
".claude/",
"templates/",
"README.md",
"LICENSE"
],
"devDependencies": {
"@types/node": "^24.10.1",
"husky": "^9.1.7",
"typescript": "^5.9.3"
}
}