mirror of
https://github.com/chenasraf/simple-scaffold.git
synced 2026-05-18 01:29:09 +00:00
## [2.0.2](https://github.com/chenasraf/simple-scaffold/compare/v2.0.1...v2.0.2) (2024-02-04) ### Bug Fixes * try to await scaffold before finally ([1b70897](1b70897f98))
67 lines
2.0 KiB
JSON
67 lines
2.0 KiB
JSON
{
|
|
"name": "simple-scaffold",
|
|
"version": "2.0.2",
|
|
"description": "Generate any file structure - from single components to entire app boilerplates, with a single command.",
|
|
"homepage": "https: //chenasraf.github.io/simple-scaffold",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/chenasraf/simple-scaffold.git"
|
|
},
|
|
"author": "Chen Asraf <contact@casraf.dev> (https://casraf.dev)",
|
|
"license": "MIT",
|
|
"main": "index.js",
|
|
"bin": {
|
|
"simple-scaffold": "cmd.js"
|
|
},
|
|
"packageManager": "pnpm@8.15.1",
|
|
"keywords": [
|
|
"javascript",
|
|
"cli",
|
|
"template",
|
|
"files",
|
|
"typescript",
|
|
"generator",
|
|
"scaffold",
|
|
"file",
|
|
"scaffolding"
|
|
],
|
|
"scripts": {
|
|
"clean": "rm -rf dist/",
|
|
"build": "pnpm clean && tsc && chmod -R +x ./dist && cp ./package.json ./README.md ./dist/",
|
|
"dev": "tsc --watch",
|
|
"start": "ts-node src/scaffold.ts",
|
|
"test": "jest",
|
|
"cmd": "ts-node src/cmd.ts",
|
|
"docs:build": "cd docs && pnpm build",
|
|
"docs:watch": "cd docs && pnpm start",
|
|
"audit-fix": "pnpm audit --fix",
|
|
"changelog": "conventional-changelog -i CHANGELOG.md -s -r 0; echo \"# Change Log\n\n$(cat CHANGELOG.md)\" > CHANGELOG.md"
|
|
},
|
|
"dependencies": {
|
|
"chalk": "^4.1.2",
|
|
"date-fns": "^3.3.1",
|
|
"glob": "^10.3.10",
|
|
"handlebars": "^4.7.8",
|
|
"massarg": "2.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@semantic-release/changelog": "^6.0.3",
|
|
"@semantic-release/exec": "^6.0.3",
|
|
"@semantic-release/git": "^10.0.1",
|
|
"@semantic-release/release-notes-generator": "^12.1.0",
|
|
"@types/jest": "^29.5.11",
|
|
"@types/mock-fs": "^4.13.4",
|
|
"@types/node": "^20.11.14",
|
|
"@types/semantic-release": "^20.0.6",
|
|
"conventional-changelog": "^5.1.0",
|
|
"conventional-changelog-cli": "^4.1.0",
|
|
"jest": "^29.7.0",
|
|
"mock-fs": "^5.2.0",
|
|
"semantic-release": "^23.0.0",
|
|
"semantic-release-conventional-commits": "^3.0.0",
|
|
"ts-jest": "^29.1.2",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.3.3"
|
|
}
|
|
}
|