Files
massarg/package.json
Chen Asraf edbde02618 chore: remove old files
chore: add gh-pages deploy script
2024-01-31 09:55:44 +02:00

44 lines
1.2 KiB
JSON

{
"name": "massarg",
"version": "0.0.0",
"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",
"doc": "typedoc --out docs src/**/*.ts --exclude src/sample.ts --plugin typedoc-plugin-zod --theme default",
"deploy-doc": "pnpm doc && gh-pages -d docs",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.8",
"@types/node": "^20.9.2",
"gh-pages": "^6.1.0",
"jest": "^29.7.0",
"semantic-release": "^22.0.8",
"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"
}
}