-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 910 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 910 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
{
"name": "structured-args",
"version": "1.3.1",
"description": "A feature-complete, type safe and highly flexible command line argument parsing library",
"author": "Alfio (https://github.com/p2js)",
"license": "ISC",
"files": [
"lib",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/p2js/structured-args.git"
},
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./option-types": {
"types": "./lib/option_types.d.ts",
"default": "./lib/option_types.js"
}
},
"scripts": {
"build": "pnpm exec tsc",
"prepublishOnly": "pnpm build"
},
"keywords": [
"cli",
"command-line-args",
"argparse",
"getopt",
"parse",
"parser"
],
"packageManager": "pnpm@11.7.0",
"devDependencies": {
"@types/node": "^25.9.3",
"typescript": "^5.9.3"
}
}