@sprouted/create-vibes
Version:
Create a new Vibes monorepo
80 lines (79 loc) • 2.18 kB
JSON
{
"name": "@sprouted/create-vibes",
"version": "0.10.4",
"description": "Create a new Vibes monorepo",
"keywords": [
"vibes",
"monorepo",
"vertical-slice",
"create",
"scaffold"
],
"type": "module",
"bin": {
"create-vibes": "./index.js",
"vibes": "./dist/cli.js"
},
"files": [
"index.js",
"templates",
"dist"
],
"exports": {
".": "./index.js",
"./cli": "./dist/cli.js",
"./dist/cli.js": "./dist/cli.js",
"./dist/commands/create-feature.js": "./dist/commands/create-feature.js",
"./dist/commands/create-app.js": "./dist/commands/create-app.js",
"./dist/commands/add-app.js": "./dist/commands/add-app.js",
"./dist/commands/create-spec.js": "./dist/commands/create-spec.js",
"./dist/template-engine/engine.js": "./dist/template-engine/engine.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"pretest": "pnpm run build",
"test": "pnpm run test:unit && pnpm run test:integration",
"test:unit": "node test/unit.test.js",
"test:integration": "node test/integration.test.js",
"test:vitest": "vitest run",
"test:spec": "vitest run test/spec-command.test.js",
"test:cli": "./test-cli.sh",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/sprouted-dev/vibes.git",
"directory": "packages/create-vibes"
},
"bugs": {
"url": "https://github.com/sprouted-dev/vibes/issues"
},
"homepage": "https://github.com/sprouted-dev/vibes#readme",
"author": "Vibes Contributors",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.1.0",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"handlebars": "^4.7.8",
"inquirer": "^9.2.12",
"ora": "^7.0.1"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/handlebars": "^4.1.0",
"@types/inquirer": "^9.0.0",
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"@vitest/ui": "^3.1.4",
"jest": "^29.0.0",
"typescript": "^5.0.0",
"vitest": "^3.1.4"
},
"engines": {
"node": ">=16.0.0"
},
"packageManager": "pnpm@10.10.0"
}