(chore): initial MVP release

This commit is contained in:
2025-07-26 02:21:20 +05:30
commit c33fb50194
8 changed files with 1231 additions and 0 deletions

20
package.json Normal file
View File

@@ -0,0 +1,20 @@
{
"name": "xodivorce",
"version": "1.0.0",
"description": "CLI card for xodivorce",
"main": "index.mjs",
"bin": {
"xodivorce": "./index.mjs"
},
"author": "Prasid Mandal <hey@xodivorce.in>",
"license": "MIT",
"type": "module",
"keywords": ["cli", "card", "npx", "xodivorce"],
"dependencies": {
"boxen": "^8.0.1",
"chalk": "^5.4.1",
"dotenv": "^17.2.1",
"inquirer": "^12.8.2",
"open": "^10.2.0"
}
}