-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.18 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
{
"name": "file-merger-cli",
"version": "0.5.1",
"description": "The File Merger CLI is a command-line tool that merges files within a specified directory by extension and outputs the file structure as JSON.",
"repository": "https://github.com/YuJM/file-merger-cli",
"main": "dist/index.js",
"bin": {
"file-merger": "./dist/index.js"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"prepublishOnly": "npm run build",
"package-update": "npm publish",
"change-check": "changeset",
"update-version": "changeset version"
},
"keywords": [
"cli",
"file-merger",
"file",
"merge",
"tool"
],
"author": "YuJM",
"license": "MIT",
"exports": {
"./package.json": "./package.json",
".": "./dist.index.js"
},
"files": [
"dist"
],
"dependencies": {
"micromatch": "^4.0.7",
"winston": "3.13.1",
"yargs": "17.7.2"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@types/micromatch": "^4.0.9",
"@types/node": "20.14.12",
"@types/yargs": "17.0.32",
"ts-node": "^10.9.2",
"typescript": "5.5.4"
}
}