-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 813 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 813 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
{
"name": "ucmd",
"version": "0.4.8",
"description": "µCMD is a minimal and strictly typed argument parsing library for node.js",
"keywords": [
"cli",
"command"
],
"homepage": "https://github.com/explodingcamera/esm/tree/main/packages/ucmd",
"repository": "https://github.com/explodingcamera/esm",
"license": "MIT",
"author": "Henry Gressmann <mail@henrygressmann.de> (https://henrygressmann.de)",
"type": "module",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup lib/index.ts --format cjs,esm --dts --sourcemap"
},
"engines": {
"node": ">=20.0.0"
}
}