@devtools-cli/devtools-cli
Version:
A free collection of essential online developer tools. Convert Base64, format JSON, generate UUIDs, analyze strings, and more. Fast, simple, and easy to use.
75 lines (74 loc) • 1.6 kB
JSON
{
"name": "@devtools-cli/devtools-cli",
"version": "1.1.0",
"description": "A free collection of essential online developer tools. Convert Base64, format JSON, generate UUIDs, analyze strings, and more. Fast, simple, and easy to use.",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/abhishekbansal/devtools.git"
},
"author": "Abhishek Bansal",
"license": "MIT",
"bin": {
"devtools": "./bin/devtools"
},
"main": "./dist/index.js",
"files": [
"dist",
"bin",
"README.md"
],
"scripts": {
"build": "tsup src/index.ts --out-dir dist --format esm --clean",
"dev": "tsup src/index.ts --out-dir dist --format esm --watch",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"prepublishOnly": "echo 'Running prepublishOnly' && pnpm build"
},
"dependencies": {
"chalk": "^5.6.0",
"commander": "^12.0.0"
},
"devDependencies": {
"@types/node": "^20.12.7",
"tsup": "^8.0.2",
"vitest": "^1.4.0"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"cli",
"devtools",
"base64",
"json",
"xml",
"hex",
"timestamp",
"uuid",
"color-converter",
"string-tools",
"cron",
"text-diff",
"diff",
"compare",
"developer-tools",
"developer-experience"
],
"tsup": {
"entry": [
"src/index.ts"
],
"outDir": "dist",
"format": [
"esm"
],
"bundle": true,
"dts": false,
"clean": true,
"splitting": false,
"external": []
}
}