-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.08 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.08 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
{
"name": "@wellyton/mapi",
"version": "0.3.0-1",
"description": "This package is a tool that helps you to create your API",
"main": "main.js",
"bin": {
"mapi": "./dist/main.js"
},
"type": "module",
"scripts": {
"dev": "tsx src/main",
"watch": "nodemon -x tsx src/main.ts",
"build": "npx tsc",
"start": "node dist/main.js",
"check": "npx prettier . --check",
"write": "npx prettier . --write",
"example": "node ./dist/main.js --create my-api"
},
"keywords": [
"cli",
"API creation"
],
"author": "Wellyton barbosa galdino (welly) <wellyton.offcer@gmail>",
"license": "MIT",
"repository": "https://github.com/wellyton-xs/mapi",
"homepage": "https://github.com/wellyton-xs/mapi#readme",
"dependencies": {
"body-parser": "^1.20.2",
"commander": "^12.1.0",
"figlet": "^1.7.0",
"inquirer": "^9.2.23"
},
"devDependencies": {
"@types/figlet": "^1.5.8",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.14.2",
"nodemon": "^3.1.3",
"prettier": "^3.3.2",
"tsx": "^4.15.5",
"typescript": "^5.4.5"
}
}