-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.17 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.17 KB
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
42
43
44
45
{
"name": "secure-password-generator",
"version": "1.0.0",
"description": "A secure, client-side password generator with customizable options and strength analysis",
"main": "index.html",
"scripts": {
"start": "python -m http.server 8000",
"serve": "npx serve .",
"test": "open tests/index.html",
"lint": "echo 'No linting configured - using manual code review'",
"build": "echo 'No build step required - pure HTML/CSS/JS'",
"deploy": "echo 'Deploy to GitHub Pages or any static hosting'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0x-Decrypt/password-generator.git"
},
"keywords": [
"password",
"generator",
"security",
"crypto",
"client-side",
"privacy",
"vanilla-javascript",
"responsive",
"accessibility"
],
"author": "0x-Decrypt",
"license": "MIT",
"bugs": {
"url": "https://github.com/0x-Decrypt/password-generator/issues"
},
"homepage": "https://github.com/0x-Decrypt/password-generator#readme",
"devDependencies": {},
"dependencies": {},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 11"
],
"engines": {
"node": ">=12.0.0"
}
}