-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 782 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 782 Bytes
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
{
"name": "adonis-v7-easy-migration",
"version": "1.0.0",
"description": "Automated migration tool for AdonisJS v6 → v7",
"type": "module",
"bin": {
"adonis-v7-migrate": "./build/bin/run.js"
},
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "node --import tsx --test 'tests/**/*.spec.ts'",
"typecheck": "tsc --noEmit",
"format": "prettier --write ."
},
"dependencies": {
"@clack/prompts": "^1.0.1",
"execa": "^9.6.1",
"globby": "^16.1.1",
"jscodeshift": "^17.3.0",
"ts-morph": "^27.0.2"
},
"devDependencies": {
"@types/jscodeshift": "^17.3.0",
"@types/node": "^25.3.2",
"prettier": "^3.5.3",
"tsx": "^4.21.0",
"typescript": "~5.9.3"
}
}