-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
54 lines (54 loc) · 1.23 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
{
"name": "tidyup",
"version": "0.0.7",
"description": "A simple CLI tool to organize files in a directory into categorized subfolders based on file types.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup",
"start": "node ./dist/index.js",
"dev": "ts-node ./src/index.ts",
"lint": "eslint . --ext .ts",
"test": "jest"
},
"bin": {
"tidyup": "./dist/index.js"
},
"keywords": [
"directory-organizer",
"file-management",
"cli-tool",
"file-organization",
"file-sorter",
"nodejs"
],
"author": {
"name": "bossadizenith",
"email": "[email protected]",
"url": "https://github.com/code-env"
},
"repository": {
"type": "git",
"url": "https://github.com/code-env/tidyup.git"
},
"bugs": {
"url": "https://github.com/code-env/tidyup/issues"
},
"homepage": "https://tidyup.bossadizenith.me",
"license": "ISC",
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@types/node": "^22.10.0",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"dependencies": {
"commander": "^12.1.0"
}
}