-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.17 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
{
"name": "@munesoft/argx",
"version": "1.10.10",
"description": "The simplest and most powerful CLI framework for JavaScript/TypeScript. Turn functions into CLIs instantly.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"test": "ts-node --project tsconfig.test.json tests/run.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"cli",
"cli parser nodejs",
"typescript cli framework",
"command line parser",
"yargs alternative",
"argparse alternative",
"build cli tools",
"argument parser",
"zero config cli",
"function to cli"
],
"author": "munesoft",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@types/inquirer": "^8.0.0",
"@types/node": "^22.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.0.0"
},
"dependencies": {
"inquirer": "^8.2.6"
},
"repository": {
"type": "git",
"url": "https://github.com/munesoft/argx.git"
},
"bugs": {
"url": "https://github.com/munesoft/argx/issues"
},
"homepage": "https://github.com/munesoft/argx#readme"
}