Files
massarg/package.json
semantic-release-bot eead8843e5 chore(release): 2.0.0-pre.12 [skip ci]
# [2.0.0-pre.12](https://github.com/chenasraf/massarg/compare/v2.0.0-pre.11...v2.0.0-pre.12) (2024-01-29)

### Bug Fixes

* docs ([0070b80](0070b800d5))
* simplify option help output, fix default value display ([b3075a0](b3075a03b3))
* split negation labels to 2 lines ([cd83a34](cd83a3484c))
2024-01-31 09:55:44 +02:00

45 lines
1.2 KiB
JSON

{
"name": "massarg",
"version": "2.0.0-pre.12",
"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",
"cmd": "ts-node src/sample.ts",
"test": "jest",
"docs:build": "cd docs && pnpm build",
"docs:watch": "cd docs && pnpm start",
"docs:deploy": "pnpm docs:build && gh-pages -d docs",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.10",
"gh-pages": "^6.1.1",
"jest": "^29.7.0",
"prettier": "^3.2.4",
"semantic-release": "^23.0.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"zod": "^3.22.4"
}
}