-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 890 Bytes
/
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
{
"name": "@ckvv/mimi",
"version": "0.0.7",
"description": "A command line tool that you can use to encrypt and decrypt local files.",
"main": "./bin/index.js",
"bin": {
"mimi": "./bin/index.js"
},
"scripts": {
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts,.md --fix --ignore-path .gitignore"
},
"keywords": [
"crypto"
],
"author": "ckvv",
"license": "ISC",
"dependencies": {
"commander": "9.4.1",
"glob": "8.0.3",
"mime-types": "2.1.35"
},
"devDependencies": {
"eslint": "8.25.0",
"@antfu/eslint-config": "0.27.0"
},
"files": [
"bin/*",
"src/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ckvv/mimi.git"
},
"homepage": "https://github.com/ckvv/mimi",
"engines": {
"node": ">=16"
},
"bugs": {
"url": "https://github.com/ckvv/mimi/issues"
}
}