-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 834 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 834 Bytes
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
{
"name": "password-gen",
"version": "0.1.0",
"type": "module",
"description": "Secure password and user ID generator with entropy analysis",
"main": "src/core/index.js",
"bin": {
"securegen": "./dist/cli/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"dev": "node server.js",
"typecheck": "tsc --noEmit",
"build": "node build.mjs",
"build:prod": "NODE_ENV=production node build.mjs",
"serve:dist": "npx serve dist",
"clean": "rm -rf dist"
},
"keywords": [
"password",
"generator",
"security",
"diceware",
"passphrase"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.10.0",
"esbuild": "^0.19.8",
"serve": "^14.2.1",
"typescript": "^5.3.3"
}
}