-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.67 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
{
"name": "litaes",
"version": "1.0.10",
"author": {
"name": "Lin Cufoon",
"email": "[email protected]",
"url": "https://cufoon.com/"
},
"description": "A cli tool to help encrypt and decrypt your data using aes-256.",
"keywords": [
"aes",
"encryptor",
"decryptor",
"encrypt",
"decrypt"
],
"homepage": "https://github.com/Cufoon/LitAesEncrytor",
"bugs": {
"url": "https://github.com/Cufoon/LitAesEncrytor/issues",
"email": "[email protected]"
},
"main": "./esm/api/index.js",
"bin": {
"litaes": "cmd/app.cjs"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Cufoon/LitAesEncrytor.git"
},
"directories": {
"test": "test"
},
"scripts": {
"build": "node ./script/clear.js && tsc --build && node ./script/makebin.js && node ./script/makeesm.js && esbuild ./tsbuild/app.js --bundle --minify --platform=node --format=cjs --outfile=./cmd/app.cjs && node ./script/clearTemp.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"license": "MIT",
"devDependencies": {
"@eslint/js": "9.9.1",
"@types/node": "22.5.1",
"@typescript-eslint/eslint-plugin": "8.3.0",
"@typescript-eslint/parser": "8.3.0",
"esbuild": "0.23.1",
"eslint": "9.9.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"globals": "15.9.0",
"prettier": "3.3.3",
"typescript": "5.5.4",
"typescript-eslint": "8.3.0"
},
"dependencies": {
"@commander-js/extra-typings": "12.1.0",
"@inquirer/confirm": "3.1.22",
"@inquirer/password": "2.1.22",
"chalk": "5.3.0",
"commander": "12.1.0",
"ora": "8.1.0"
}
}