-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.52 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
67
{
"name": "incypher",
"version": "0.10.0",
"description": "An encrypted keystore intended to store crypto keys, seed phrases, passwords, files and other sensitive data",
"type": "module",
"bin": {
"incypher": "bin/cli.js"
},
"scripts": {
"clean": "rimraf ./build",
"build": "npm run build:webpack && npm run build:elf && npm run build:exe",
"build:webpack": "webpack",
"build:elf": "pkg build/incypher.cjs --targets node18-linux-x64,node18-macos-x64 --output ./build/incypher",
"build:exe": "exe exe.json",
"cli": "node ./bin/cli.js"
},
"author": {
"name": "AJ Savino"
},
"license": "GPL-3.0",
"dependencies": {
"clipboardy": "4.0.0",
"deluxe-cli": "0.4.1",
"jszip": "3.10.1"
},
"devDependencies": {
"@angablue/exe": "3.2.3",
"@babel/core": "^7.24.9",
"@babel/plugin-syntax-import-assertions": "^7.24.7",
"@babel/preset-env": "^7.24.8",
"babel-loader": "^9.1.3",
"pkg": "^5.8.1",
"postject": "^1.0.0-alpha.6",
"rimraf": "^4.0.5",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koga73/incypher.git"
},
"keywords": [
"crypto",
"seed",
"pass",
"encrypt",
"decrypt",
"archive",
"zip",
"secure",
"store",
"rclone",
"cloud",
"sync",
"portable",
"interactive"
],
"bugs": {
"url": "https://github.com/koga73/incypher/issues"
},
"homepage": "https://github.com/koga73/incypher#readme",
"engines": {
"node": ">=20.16.0"
}
}