-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.28 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.28 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@kdbx/pak",
"version": "0.5.1",
"description": "PAK (Password Age Kit) - A simple, secure password manager in JavaScript using age encryption",
"main": "dist/src/index.js",
"bin": {
"pak": "dist/src/cli.js"
},
"files": [
"dist/",
"scripts/",
"README.md",
"LICENSE"
],
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && npm run build:native && tsc && node scripts/set-version.js && rm -rf dist/native && cp -r native dist/",
"build:watch": "tsc --watch",
"build:native": "./scripts/build-native.sh",
"build:swift": "cd native && npm run build-swift",
"dev": "ts-node src/cli.ts",
"test": "jest --passWithNoTests",
"test:interop": "mocha dist/test/crypto-interop.test.js",
"test:watch": "jest --watch",
"lint": "eslint \"src/**/*.{js,ts}\"",
"lint:fix": "eslint \"src/**/*.{js,ts}\" --fix",
"typecheck": "tsc --noEmit",
"prepare": "npm run build",
"postinstall": "node scripts/postinstall.js"
},
"keywords": [
"password",
"manager",
"age",
"encryption",
"security",
"crypto",
"cli",
"cross-platform",
"keychain",
"credential-store"
],
"author": "tonidy",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tonidy/pak-cli.git"
},
"bugs": {
"url": "https://github.com/tonidy/pak-cli/issues"
},
"homepage": "https://github.com/tonidy/pak-cli#readme",
"devDependencies": {
"@types/chai": "^5.2.2",
"@types/jest": "^29.5.0",
"@types/mocha": "^10.0.10",
"@types/node": "^18.15.0",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^8.46.2",
"chai": "^5.2.1",
"eslint": "^9.38.0",
"jest": "^29.5.0",
"mocha": "^11.7.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.0",
"typescript": "^5.0.0"
},
"dependencies": {
"@noble/ciphers": "^1.3.0",
"@noble/curves": "^1.9.2",
"@noble/hashes": "^1.8.0",
"age-encryption": "^0.2.4",
"bech32": "^2.0.0",
"commander": "^9.4.0",
"keytar": "^7.9.0",
"readline": "^1.3.0"
},
"optionalDependencies": {
"fzf": "^0.5.0",
"node-addon-api": "^8.5.0",
"node-gyp": "^9.0.0"
},
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public"
}
}