-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 760 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 760 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
31
32
33
34
35
36
37
{
"name": "folder-organizer",
"version": "1.0.5",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsup",
"prepare": "npm run build"
},
"keywords": [
"cli",
"file-organizer",
"nodejs"
],
"author": "Aaqil Yousuf",
"license": "MIT",
"description": "Organize files in a folder by type",
"bin": {
"folder-organizer": "./dist/index.js"
},
"type": "commonjs",
"dependencies": {
"@types/node": "^24.0.15",
"chalk": "^5.4.1",
"commander": "^14.0.0",
"minimist": "^1.2.8",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"devDependencies": {
"@types/minimist": "^1.2.5",
"tsup": "^8.5.0"
},
"files": [
"dist"
]
}