-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.12 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
{
"name": "@lzwme/duplicate-file-cleaner",
"version": "1.2.0",
"description": "一个基于 Node.js 的重复文件删除工具。",
"main": "index.js",
"typings": "./dist/index.d.ts",
"bin": {
"dfcleaner": "bin/dfcleaner.js"
},
"repository": "https://github.com/lzwme/duplicate-file-cleaner.git",
"publishConfig": {
"registry": "https://registry.npmjs.com",
"access": "public"
},
"author": {
"name": "renxia",
"email": "[email protected]",
"url": "https://lzw.me"
},
"license": "MIT",
"engines": {
"node": ">=12"
},
"packageManager": "[email protected]",
"keywords": [
"cleaner",
"重复文件",
"文件清理",
"图片清理",
"相似图片",
"文件删除"
],
"scripts": {
"start": "npm run dev",
"dev": "tsc -w",
"build": "tsc",
"test": "node test/test.js",
"release": "npm run clean && npm run build && echo done!",
"clean": "node scripts/rmdir.js ./dist"
},
"dependencies": {
"commander": "^11.0.0",
"console-log-colors": "^0.4.0"
},
"devDependencies": {
"@types/node": "^20.6.1",
"typescript": "^5.2.2"
}
}