-
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.16 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.16 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": "argvex",
"description": "Lightweight and unopinionated CLI argument parser — just a parsing tool, not a framework",
"version": "0.1.1",
"engines": {
"node": ">=18"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"preprepare": "ts-patch install",
"prepack": "npm run build",
"test": "vitest --no-watch",
"lint": "biome check .",
"lint:fix": "biome check --fix .",
"format": "biome format .",
"format:fix": "biome format --fix .",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@types/node": "^22.4.0",
"ts-patch": "^3.2.1",
"typescript": "^5.5.4",
"typescript-transform-paths": "^3.4.11",
"vitest": "^3.2.4"
},
"author": "Mateusz Pietrzak",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mzpkdev/argvex.git"
},
"files": [
"lib/**/*.js",
"lib/**/*.d.ts",
"lib/**/*.d.ts.map",
"lib/**/*.js.map",
"README.md",
"LICENSE"
],
"keywords": [
"nodejs",
"cli",
"argparse",
"argv-parser"
]
}