mika-ffstalk
Version:
A modern CLI and TypeScript library to inspect Free Fire player accounts using public API data.
70 lines (69 loc) • 1.6 kB
JSON
{
"name": "mika-ffstalk",
"version": "1.0.0",
"description": "A modern CLI and TypeScript library to inspect Free Fire player accounts using public API data.",
"author": "Zann x Mika <zannlovez@gmail.com>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"mika-ffstalk": "./dist/cli.js"
},
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"type": "commonjs",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "ts-node lib/index.ts",
"build": "tsc",
"lint": "eslint lib --ext .ts",
"test": "vitest",
"prepare": "npm run build"
},
"keywords": [
"freefire",
"garena",
"cli",
"uid",
"ffaccount",
"ff-inspect",
"typescript",
"api",
"gamer",
"ffstats"
],
"repository": {
"type": "git",
"url": "https://github.com/MikaYulevich/mika-ffstalk"
},
"bugs": {
"url": "https://github.com/MikaYulevich/mika-ffstalk/issues"
},
"homepage": "https://github.com/MikaYulevich/mika-ffstalk#readme",
"dependencies": {
"axios": "^1.6.7",
"chalk": "^5.3.0",
"cli-table3": "^0.6.3",
"commander": "^11.1.0",
"esbuild": "^0.25.6",
"moment": "^2.29.4",
"ora": "^6.3.1",
"vitest": "^3.2.4"
},
"devDependencies": {
"@types/cli-table": "^0.3.1",
"@types/node": "^18.18.12",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
}
}