-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 759 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 759 Bytes
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
{
"name": "wcipher-cli",
"version": "0.0.1",
"description": "A simple command-line tool for encrypting and decrypting files using wcipher with an user defined password.",
"type": "module",
"scripts": {
"build": "tsc",
"start": "ts-node ./src/index.ts"
},
"bin": {
"wcipher": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/hkalbertl/wcipher-cli.git"
},
"author": "Albert L <hkalbertl@users.noreply.github.com>",
"license": "MIT",
"dependencies": {
"commander": "^13.1.0",
"enquirer": "^2.4.1",
"wcipher": "^0.0.4"
},
"devDependencies": {
"@types/node": "^22.13.4",
"@types/readline-sync": "^1.4.8",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}