-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1009 Bytes
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1009 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
38
39
40
41
42
43
44
45
46
47
48
{
"name": "padman",
"version": "1.0.1",
"description": "A utility for normalizing numeric prefixes in filenames by padding zeroes",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"padman": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"prepareToPublish": "npm run clean && npm run build",
"start": "node dist/cli.js"
},
"keywords": [
"rename",
"sort",
"directory",
"cli",
"pad zeroes",
"sort files"
],
"author": "Aryan Kumar <mail@ba3a.tech>",
"repository": {
"url": "https://github.com/Ba3a-G/padman"
},
"homepage": "https://github.com/Ba3a-G/padman",
"license": "ISC",
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=14.16"
},
"dependencies": {
"commander": "^14.0.0"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^22.15.24",
"typescript": "^5.8.3"
}
}