mirror of
https://github.com/chenasraf/massarg.git
synced 2026-05-18 01:39:05 +00:00
38 lines
975 B
JSON
38 lines
975 B
JSON
{
|
|
"name": "massarg",
|
|
"version": "1.0.7-pre.1",
|
|
"description": "Flexible, powerful, and simple command/argument parser for CLI applications",
|
|
"keywords": [
|
|
"shell",
|
|
"cli",
|
|
"parser",
|
|
"typescript",
|
|
"args",
|
|
"command-line"
|
|
],
|
|
"main": "index.js",
|
|
"repository": "https://github.com/chenasraf/massarg.git",
|
|
"author": "Chen Asraf <chenasrafil@gmail.com>",
|
|
"license": "Apache",
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.build.json && cp package.json README.md build",
|
|
"dev": "tsc --watch",
|
|
"example": "ts-node src/example.ts",
|
|
"test": "jest",
|
|
"docs": "typedoc --out docs src --plugin typedoc-plugin-zod --theme default"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.8",
|
|
"@types/node": "^20.9.2",
|
|
"jest": "^29.7.0",
|
|
"ts-jest": "^29.1.1",
|
|
"ts-node": "^10.9.1",
|
|
"typedoc": "^0.25.3",
|
|
"typedoc-plugin-zod": "^1.1.0",
|
|
"typescript": "^5.2.2"
|
|
},
|
|
"dependencies": {
|
|
"zod": "^3.22.4"
|
|
}
|
|
}
|