-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 860 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
{
"name": "password-generator",
"version": "1.0.0",
"description": "Password Generator CLI",
"main": "app.js",
"preferGlobal": true,
"bin": "dist/app.js",
"author": {
"name": "Kain Nhantumbo",
"email": "nhantumbok@gmail.com",
"portfolio": "https://codenut-dev.vercel.app",
"github": "https://github.com/KainNhantumbo",
"linkedin": "https://www.linkedin.com/in/kain-nhantumbo?locale=en_US"
},
"scripts": {
"start": "node dist/app.js",
"build": "tsc",
"dev": "nodemon --exec ts-node src/app.ts",
"typecheck:watch": "tsc -w"
},
"license": "GNU General Public License Version 3 ",
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/node": "^18.11.0",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"commander": "^9.4.1"
}
}