-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.29 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.29 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@master4n/master-cli",
"version": "2.3.3",
"description": "AI-agent-friendly command-line toolkit: timestamp/date conversion, JWT decoding, port killing, file finding, and directory trees — headless, --json, with a self-describing manifest.",
"main": "./bin/index.js",
"types": "./bin/index.d.ts",
"type": "module",
"bin": {
"mfn": "./bin/index.js"
},
"scripts": {
"clean": "rimraf dist",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"build": "npm run clean && rollup --config"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Master4Novice/master-cli.git"
},
"bugs": {
"url": "https://github.com/Master4Novice/master-cli/issues"
},
"keywords": [
"cli",
"command-line",
"command-line-tool",
"developer-tools",
"devtools",
"nodejs",
"typescript",
"ai-agents",
"agent-tools",
"llm-tools",
"automation",
"headless",
"json-output",
"jwt",
"jwt-decode",
"epoch",
"epoch-converter",
"unix-timestamp",
"timezone",
"kill-port",
"free-port",
"directory-tree",
"fuzzy-finder",
"mfn",
"master-cli"
],
"author": "dwivna",
"license": "MIT",
"homepage": "https://github.com/Master4Novice/master-cli#readme",
"publishConfig": {
"directory": "dist",
"access": "public"
},
"contributors": [
{
"name": "dwivna"
}
],
"dependencies": {
"@master4n/temporal-transformer": "^2.0.4",
"boxen": "^7.1.1",
"chalk": "^5.3.0",
"figlet": "^1.7.0",
"fs-extra": "^11.2.0",
"fuzzy": "^0.1.3",
"inquirer": "^9.2.23",
"inquirer-fuzzy-path": "^2.3.0",
"ora": "^8.0.1",
"sharp": "^0.33.4",
"yargs": "^17.7.2"
},
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/figlet": "^1.5.8",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/inquirer-fuzzy-path": "^2.3.9",
"@types/node": "^20.12.12",
"@types/yargs": "^17.0.32",
"rimraf": "^5.0.5",
"rollup": "^4.12.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-dts": "^6.1.0",
"tslib": "^2.6.3",
"typescript": "^5.4.2"
}
}