-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 897 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
{
"name": "makepass",
"version": "1.2.0",
"description": "A very simple password generator for the command line.",
"license": "MIT",
"author": "Joshua Schmitt <me@jqshuv.com>",
"repository": "https://github.com/jqshuv/makepass",
"keywords": [],
"private": false,
"main": "build/index.js",
"types": "dist/index.d.ts",
"bin": {
"makepass": "build/index.js"
},
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"dev": "ts-node src/index.ts",
"compile": "bun build build/index.js --compile --outfile out"
},
"dependencies": {
"chalk": "^5.4.1",
"commander": "^11.1.0"
},
"devDependencies": {
"@types/node": "^20.17.10",
"typescript": "^5.7.2"
},
"packageManager": "pnpm@9.15.1+sha512.1acb565e6193efbebda772702950469150cf12bcc764262e7587e71d19dc98a423dff9536e57ea44c49bdf790ff694e83c27be5faa23d67e0c033b583be4bfcf"
}