-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 849 Bytes
/
package.json
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
{
"name": "mf-kit",
"version": "1.0.1",
"description": "",
"main": "index.js",
"engines": {
"node": ">=18"
},
"bin": {
"mf-kit": "dist/index.js"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"scripts": {
"build": "tsc && ts-node ./build",
"lint": "eslint",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@inquirer/prompts": "^5.1.2",
"chalk": "^4",
"commander": "^12.1.0",
"fs-extra": "^11.2.0"
},
"devDependencies": {
"@eslint/js": "^9.7.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.14.10",
"eslint": "9.7.0",
"globals": "^15.8.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "3.3.2",
"typescript": "^5.5.3",
"typescript-eslint": "^7.16.0"
}
}