-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 917 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": "passwdgen",
"version": "1.1.0",
"description": "A Password generation package",
"main": "dist/index.js",
"module": "dist/index.es.js",
"preferGlobal": true,
"bin": {
"passwdgen": "dist/index.js"
},
"files": [
"dist"
],
"repository": "[email protected]:mathura333/passwdgen.git",
"author": "mathura333 <[email protected]>",
"license": "MIT",
"keywords": [
"cli",
"password-generation",
"nodejs"
],
"scripts": {
"dev": "ts-node index.ts",
"start": "node dist/index.js",
"build": "tsc",
"prettier:run": "prettier --write .",
"prettier:check": "prettier --check ."
},
"dependencies": {
"chalk": "^4.1.2",
"clipboardy": "^2.3.0",
"commander": "^8.1.0",
"randexp": "^0.5.3"
},
"devDependencies": {
"@types/node": "^16.4.9",
"prettier": "^2.3.2",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
}
}