-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.28 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
{
"name": "ordinary-arg-parser",
"version": "1.3.3",
"description": "A lightweight GNU-convention compliant command-line argument parser",
"scripts": {
"build": "tsdown src/parser.ts --format=esm --format=cjs --platform=neutral --dts",
"test": "vitest",
"prepare": "pnpm test && pnpm build"
},
"keywords": [
"argument",
"args",
"option",
"parser",
"cli",
"command"
],
"author": {
"name": "Rohit Kumar",
"url": "https://github.com/RibbtDev"
},
"repository": {
"type": "git",
"url": "https://github.com/RibbtDev/ordinary-arg-parser"
},
"homepage": "https://github.com/RibbtDev/ordinary-arg-parser",
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/parser.d.ts",
"default": "./dist/parser.js"
},
"require": {
"types": "./dist/parser.d.cts",
"default": "./dist/parser.cjs"
}
}
},
"files": [
"dist"
],
"packageManager": "pnpm@10.24.0",
"devDependencies": {
"tsdown": "0.17.0-beta.4",
"typescript": "^5.9.3",
"vitest": "^4.0.14"
}
}