-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.22 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.22 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
52
53
54
55
56
57
{
"name": "@hypernym/args",
"version": "0.3.5",
"author": "Hypernym Studio",
"description": "A fast and ultra lightweight CLI argument parser.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hypernym-studio/args.git"
},
"homepage": "https://github.com/hypernym-studio/args",
"funding": "https://github.com/sponsors/ivodolenc",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"keywords": [
"hyper",
"hypernym",
"cli",
"argv",
"args",
"node",
"flags",
"alias",
"commands",
"typescript",
"arguments",
"process",
"parser",
"esm"
],
"scripts": {
"dev": "bun --watch playground/args.ts",
"build": "hyperbundler",
"lint": "oxlint",
"format": "oxfmt",
"test": "vitest -c test/vitest.config.ts",
"prepublishOnly": "pnpm run build"
},
"devDependencies": {
"@hypernym/bundler": "^0.32.0",
"@hypernym/oxlint-config": "^0.1.0",
"@hypernym/tsconfig": "^2.7.0",
"@types/node": "^25.3.3",
"oxfmt": "^0.36.0",
"oxlint": "^1.51.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}