mirror of
https://github.com/chenasraf/massarg.git
synced 2026-05-18 01:39:05 +00:00
49 lines
1.5 KiB
JSON
49 lines
1.5 KiB
JSON
{
|
|
"name": "massarg",
|
|
"version": "2.0.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",
|
|
"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",
|
|
"changelog": "conventional-changelog -i CHANGELOG.md -s -r 0; echo \"# Change Log\n\n$(cat CHANGELOG.md)\" > CHANGELOG.md"
|
|
},
|
|
"devDependencies": {
|
|
"@semantic-release/changelog": "^6.0.3",
|
|
"@semantic-release/exec": "^7.1.0",
|
|
"@semantic-release/git": "^10.0.1",
|
|
"@semantic-release/release-notes-generator": "^14.1.0",
|
|
"@types/jest": "^30.0.0",
|
|
"@types/node": "^25.0.10",
|
|
"conventional-changelog": "^7.1.1",
|
|
"conventional-changelog-cli": "^5.0.0",
|
|
"gh-pages": "^6.3.0",
|
|
"jest": "^30.2.0",
|
|
"prettier": "^3.8.1",
|
|
"semantic-release": "^25.0.2",
|
|
"ts-jest": "^29.4.6",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"dependencies": {
|
|
"zod": "^4.3.6"
|
|
}
|
|
}
|