-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.51 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@iamnapo/poor-mans-password-manager",
"version": "0.1.0",
"description": "Simple CLI to turn memorable sentences into secure passwords",
"keywords": [
"password",
"manager",
"CLI",
"security",
"password-generator",
"secure-password",
"encryption",
"password-security"
],
"homepage": "https://github.com/iamnapo/poor-mans-password-manager#readme",
"bugs": {
"url": "https://github.com/iamnapo/poor-mans-password-manager/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iamnapo/poor-mans-password-manager.git"
},
"license": "MIT",
"author": {
"name": "Napoleon-Christos Oikonomou",
"email": "napoleonoikon@gmail.com",
"url": "https://iamnapo.me"
},
"type": "module",
"exports": "./distribution/cli.js",
"bin": {
"pmpm": "./distribution/cli.js",
"poor-mans-password-manager": "./distribution/cli.js"
},
"files": [
"distribution/cli.js"
],
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts --cache",
"prepare": "npm run build",
"test": "npm run lint && npm run build && node --test distribution/tests/*.js"
},
"eslintConfig": {
"extends": "iamnapo/typescript",
"ignorePatterns": "distribution"
},
"dependencies": {
"meow": "^13.2.0"
},
"devDependencies": {
"@iamnapo/tsconfig": "^6.0.0",
"@types/node": "^20.14.10",
"eslint": "^8.57.0",
"eslint-config-iamnapo": "^36.0.0",
"execa": "^9.3.0",
"typescript": "^5.5.3"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}