schafott-cli
Version:
Scaffold CLI is a command line tool to generate scaffolds for your projects. It takes away the pain of creating the same files and folders over and over again for every new library project you start. Also it comes with ready-to-use configurations for Type
70 lines • 1.67 kB
JSON
{
"name": "schafott-cli",
"version": "1.3.0",
"main": "dist/index.js",
"engines": {
"node": ">=16"
},
"bin": {
"schafott": "dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atorczynski/schafott-cli.git"
},
"bugs": {
"url": "https://github.com/atorczynski/schafott-cli/issues"
},
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"keywords": [
"cli",
"schafott",
"schafott-cli",
"scaffolding",
"scaffold",
"generator",
"cli-generator",
"cli-scaffolding",
"cli-scaffold"
],
"author": "Artur Torczynski",
"license": "MIT",
"description": "",
"devDependencies": {
"@changesets/cli": "^2.27.8",
"@eslint/js": "^9.9.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-typescript": "^11.1.6",
"@rollup/plugin-url": "^8.0.2",
"@types/node": "^22.2.0",
"@types/react": "^18.3.7",
"eslint": "^9.9.0",
"globals": "^15.9.0",
"prettier": "3.3.3",
"rollup": "^4.23.0",
"standard": "17.1.0",
"tslib": "^2.7.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0"
},
"dependencies": {
"@inquirer/checkbox": "^2.4.7",
"@inquirer/prompts": "^5.3.8",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"ora": "^8.0.1"
},
"scripts": {
"test": "standard",
"link-cli": "pnpm remove -g schafott-cli && pnpm link -g",
"unlink-cli": "pnpm remove schafott-cli -g",
"build": "rollup -c",
"watch": "rollup -c -w",
"publish-package": "pnpm changeset publish",
"publish-beta": "pnpm publish --no-git-checks --access public --tag beta"
}
}