UNPKG

valor-interview

Version:

CLI tool for downloading Valor interview challenges

60 lines (59 loc) 1.38 kB
{ "name": "valor-interview", "version": "0.0.14", "description": "CLI tool for downloading Valor interview challenges", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "valor-interview": "dist/index.js" }, "files": [ "dist", "README.md" ], "scripts": { "build": "node esbuild.config.js", "build:types": "tsc --emitDeclarationOnly", "build:all": "npm run build && npm run build:types", "dev": "tsx src/index.ts", "start": "node dist/index.js", "clean": "rm -rf dist", "prepublishOnly": "npm run clean && npm run build:all" }, "dependencies": { "chalk": "^4.1.2", "fs-extra": "^11.2.0", "inquirer": "^8.2.6", "ora": "^5.4.1" }, "devDependencies": { "@types/fs-extra": "^11.0.4", "@types/inquirer": "^8.2.10", "@types/node": "^20.19.5", "esbuild": "^0.20.0", "tsx": "^4.6.0", "typescript": "^5.3.0" }, "keywords": [ "cli", "interview", "challenges", "valor" ], "author": "Valor", "license": "ISC", "repository": { "type": "git", "url": "https://github.com/ryok90/valor-interview.git" }, "homepage": "https://github.com/ryok90/valor-interview#readme", "bugs": { "url": "https://github.com/ryok90/valor-interview/issues" }, "engines": { "node": ">=18.0.0" }, "publishConfig": { "access": "public" } }