-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.26 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.26 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
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "lpgp",
"version": "0.5.1",
"description": "Interactive CLI tool for PGP encryption/decryption with SQLite key management",
"author": "Bob Bass",
"license": "SEE LICENSE IN LICENSE",
"type": "module",
"bin": {
"lpgp": "./dist/pgp-tool.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/robertjbass/lpgp.git"
},
"homepage": "https://github.com/robertjbass/lpgp#readme",
"bugs": {
"url": "https://github.com/robertjbass/lpgp/issues"
},
"engines": {
"node": ">=18"
},
"keywords": [
"pgp",
"gpg",
"encryption",
"decryption",
"openpgp",
"cli",
"security"
],
"scripts": {
"dev": "tsx src/pgp-tool.ts",
"build": "tsc && cp src/schema.sql dist/schema.sql",
"start": "node dist/pgp-tool.js",
"format": "prettier --write ."
},
"dependencies": {
"chalk": "^5.6.2",
"clipboardy": "^5.0.0",
"commander": "^14.0.2",
"cross-keychain": "^1.1.0",
"inquirer": "^12.10.0",
"openpgp": "^6.2.2",
"sql.js": "^1.13.0"
},
"devDependencies": {
"@types/inquirer": "^9.0.9",
"@types/node": "^24.9.2",
"@types/sql.js": "^1.4.9",
"prettier": "^3.6.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}