-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.06 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.06 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
81
82
83
84
85
{
"name": "shiftforge",
"version": "0.1.0",
"description": "Autonomous Code Migration Assistant - Analyze, transform, and migrate codebases automatically",
"main": "dist/index.js",
"bin": {
"shiftforge": "dist/cli/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx watch src/cli/index.ts",
"start": "node dist/cli/index.js",
"test": "jest",
"lint": "eslint src --ext .ts",
"typecheck": "tsc --noEmit",
"server": "tsx src/server/index.ts"
},
"keywords": [
"migration",
"code-transformation",
"ast",
"automation",
"cli",
"codemod",
"refactoring",
"typescript",
"ai",
"llm",
"claude",
"node-upgrade",
"framework-migration",
"ast-transformation",
"code-migration",
"developer-tools"
],
"author": "Andrii",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/andrii/shiftforge.git"
},
"bugs": {
"url": "https://github.com/andrii/shiftforge/issues"
},
"homepage": "https://github.com/andrii/shiftforge#readme",
"dependencies": {
"@anthropic-ai/sdk": "^0.20.0",
"@babel/parser": "^7.23.9",
"@babel/traverse": "^7.23.9",
"@babel/types": "^7.23.9",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"dotenv": "^17.2.3",
"express": "^4.18.2",
"fs-extra": "^11.2.0",
"glob": "^10.3.10",
"jscodeshift": "^0.15.1",
"json5": "^2.2.3",
"ora": "^5.4.1",
"prompts": "^2.4.2",
"semver": "^7.5.4",
"simple-git": "^3.22.0",
"ts-morph": "^21.0.1",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@types/babel__traverse": "^7.20.5",
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.0",
"@types/prompts": "^2.4.9",
"@types/semver": "^7.5.6",
"@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",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}