UNPKG

qraft

Version:

A powerful CLI tool to qraft structured project setups from GitHub template repositories

88 lines (87 loc) 2.11 kB
{ "name": "qraft", "version": "1.1.6", "description": "A powerful CLI tool to qraft structured project setups from GitHub template repositories", "main": "dist/cli.js", "types": "dist/cli.d.ts", "bin": { "qraft": "bin/qraft.js" }, "scripts": { "build": "tsc", "build:declarations": "tsc --declaration --emitDeclarationOnly --outDir dist", "dev": "tsc --watch", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "lint": "echo 'No linting configured yet'", "clean": "rm -rf dist/", "prepublishOnly": "npm run clean && npm run build && npm test", "postpublish": "echo 'Package published successfully!'", "release": "node scripts/release.js", "release:dry": "node scripts/release.js --dry-run" }, "keywords": [ "cli", "template", "scaffold", "qraft", "craft", "create", "project-generator", "github", "templates", "boilerplate", "code-generator", "developer-tools", "automation", "workflow", "npx" ], "author": "Stefan Neidig <stefan@rpdev.net> (https://rpdev.net/)", "license": "MIT", "homepage": "https://github.com/dasheck0/qraft#readme", "repository": { "type": "git", "url": "git+https://github.com/dasheck0/qraft.git" }, "bugs": { "url": "https://github.com/dasheck0/qraft/issues" }, "files": [ "dist/", "bin/", "README.md", "LICENSE", "CHANGELOG.md" ], "engines": { "node": ">=16.0.0", "npm": ">=7.0.0" }, "os": [ "darwin", "linux", "win32" ], "preferGlobal": true, "devDependencies": { "@types/fs-extra": "^11.0.4", "@types/inquirer": "^9.0.8", "@types/jest": "^30.0.0", "@types/node": "^24.0.10", "@types/node-fetch": "^2.6.12", "jest": "^30.0.4", "lefthook": "^1.11.16", "ts-jest": "^29.4.0", "typescript": "^5.8.3" }, "dependencies": { "@octokit/auth-token": "^6.0.0", "@octokit/rest": "^22.0.0", "chalk": "^4.1.2", "commander": "^14.0.0", "fs-extra": "^11.3.0", "inquirer": "^12.7.0" } }