-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.33 KB
/
package.json
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
{
"name": "@hypernym/args",
"version": "0.3.0",
"author": "Hypernym Studio",
"description": "A fast and ultra lightweight CLI argument parser.",
"license": "MIT",
"repository": "hypernym-studio/args",
"homepage": "https://github.com/hypernym-studio/args",
"funding": "https://github.com/sponsors/ivodolenc",
"type": "module",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.mjs"
}
},
"files": [
"dist"
],
"keywords": [
"cli",
"argv",
"args",
"node",
"flags",
"alias",
"commands",
"typescript",
"arguments",
"process",
"parser",
"esm"
],
"scripts": {
"build": "hyperbundler",
"test": "vitest",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"dev": "bun --watch playground/args.ts",
"prepublishOnly": "npm run build"
},
"sideEffects": false,
"packageManager": "[email protected]",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"devDependencies": {
"@hypernym/bundler": "^0.10.0",
"@hypernym/eslint-config": "^3.5.0",
"@hypernym/prettier-config": "^3.2.0",
"@hypernym/tsconfig": "^2.3.0",
"@types/node": "^20.16.5",
"eslint": "^9.10.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
}
}