-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 719 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 719 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
{
"name": "sweep-it",
"version": "1.0.0",
"main": "dist/index.js",
"bin": {
"sweep-it": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/cli.ts",
"format": "prettier . --write",
"prepublishOnly": "npm run build"
},
"author": "yeonjuan",
"license": "MIT",
"description": "Interactive CLI tool for cleaning up directories with swipe-style navigation",
"repository": {
"type": "git",
"url": "git+https://github.com/yeonjuan/sweep-it.git"
},
"dependencies": {
"chalk": "^4.1.2",
"readline": "^1.3.0"
},
"devDependencies": {
"@types/node": "^20.11.0",
"prettier": "^3.8.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}