{
	"name": "@benev/argv",
	"version": "0.3.14",
	"description": "command line argument parser",
	"license": "MIT",
	"author": "Chase Moskal <chasemoskal@gmail.com>",
	"type": "module",
	"main": "x/index.js",
	"files": [
		"x",
		"s"
	],
	"scripts": {
		"build": "npm run -s clean && npm run -s compile && npm run -s perms",
		"clean": "rm -rf x && mkdir x",
		"compile": "tsc",
		"perms": "chmod -R +x x",
		"start": "run-p watch",
		"watch": "tsc -w",
		"watchexample": "chokidar 'x/**/*.js' -c 'clear && node x/examples/pizza.js --help'",
		"watchtest": "chokidar 'x/**/*.js' -c 'clear && node x/tests.test.js'",
		"test": "node x/tests.test.js"
	},
	"devDependencies": {
		"@types/node": "^25.3.0",
		"chokidar-cli": "^3.0.0",
		"typescript": "^5.9.3"
	},
	"keywords": [
		"argv",
		"cli",
		"command-line",
		"parser",
		"args"
	],
	"repository": {
		"type": "git",
		"url": "git+https://github.com/benevolent-games/argv.git"
	},
	"bugs": {
		"url": "https://github.com/benevolent-games/argv/issues"
	},
	"homepage": "https://github.com/benevolent-games/argv#readme"
}
