showdown-calc-cli
Version:
Quick and easy pokemon damage calulations in your terminal
51 lines (50 loc) • 1.15 kB
JSON
{
"name": "showdown-calc-cli",
"version": "1.0.0",
"description": "Quick and easy pokemon damage calulations in your terminal",
"main": "dist/main.js",
"bin": {
"pscalc": "dist/main.js"
},
"types": "dist/index.d.ts",
"scripts": {
"dev": "ts-node src/main.ts",
"build": "rm -rf ./dist && tsc",
"prepublish": "npm run build"
},
"keywords": [
"pokemon",
"vgc",
"damage calulator",
"smogon",
"pokemon showdown",
"competitive pokemon"
],
"author": "Roshan B",
"license": "MIT",
"devDependencies": {
"@types/inquirer": "^8.1.3",
"@types/node": "^14.17.32",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"dependencies": {
"@smogon/calc": "^0.6.0",
"commander": "^8.3.0",
"inquirer": "^8.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Roshan-24/showdown-calc-cli.git"
},
"bugs": {
"url": "https://github.com/Roshan-24/showdown-calc-cli/issues"
},
"publishConfig": {
"access": "public",
"branches": [
"main"
]
},
"homepage": "https://github.com/Roshan-24/showdown-calc-cli#readme"
}