-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1008 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
{
"name": "passwordx",
"private": false,
"version": "1.2.0",
"description": "Use the cli to generate strong passwords or add them to nodejs projects",
"main": "build/index.js",
"types": "build/index.d.ts",
"bin": {
"passwordx": "./build/cli.js"
},
"scripts": {
"build": "tsc"
},
"homepage": "https://github.com/samarmeena/passwordx",
"bugs": {
"url": "https://github.com/samarmeena/passwordx/issues",
"email": "vijayymmeena@gmail.com"
},
"author": "Vijay Meena <vijayymmeena@gmail.com> (https://github.com/samarmeena)",
"funding": {
"type": "individual",
"url": "https://paypal.me/vijayxmeena"
},
"license": "MIT",
"dependencies": {
"tslib": "^2.6.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node": "^20.11.30",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.57.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.2"
}
}