create-crack
Version:
CLI tool for creating crack projects
52 lines • 1.19 kB
JSON
{
"name": "create-crack",
"version": "2.0.0",
"description": "CLI tool for creating crack projects",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"create-crack": "dist/index.esm.js"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"template",
"README.md"
],
"keywords": [
"cli",
"create",
"crack",
"scaffold"
],
"author": "",
"license": "ISC",
"dependencies": {
"@clack/prompts": "^0.11.0",
"boxen": "^8.0.1",
"commander": "^14.0.0",
"execa": "8",
"fs-extra": "^11.3.0",
"kleur": "^4.1.5",
"nanospinner": "^1.2.2",
"tar": "^7.4.3",
"@verve-kit/utils": "2.0.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"rollup-plugin-copy": "^3.5.0"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"check-types": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"lint:ci": "eslint src --ext .ts,.tsx --ignore-pattern '**/*.test.ts' --ignore-pattern '**/*.spec.ts' --max-warnings 0",
"format:ci": "prettier --check \"src/**/*.{ts,tsx}\""
}
}