UNPKG

@vidavidorra/create-project

Version:
239 lines (238 loc) 5.38 kB
{ "name": "@vidavidorra/create-project", "version": "3.0.132", "private": false, "description": "Interactively create a GitHub project", "keywords": [ "create", "project" ], "homepage": "https://github.com/vidavidorra/create-project#readme", "bugs": { "url": "https://github.com/vidavidorra/create-project/issues" }, "repository": { "type": "git", "url": "git+https://github.com/vidavidorra/create-project.git" }, "license": "GPL-3.0-or-later", "author": "Jeroen de Bruijn", "type": "module", "exports": "./dist/index.js", "bin": { "@vidavidorra/create-project": "./dist/cli.js", "create-project": "./dist/cli.js" }, "files": [ "./dist/**/!(*.test).{js,d.ts,cjs}", "./.editorconfig", "./.github/", "./.gitignore", "./src/scripts/postinstall.js", "./LICENSE.md", "./tsconfig.json" ], "scripts": { "build": "tsc", "format": "prettier --ignore-path .gitignore --write \"**/*.{vue,css,less,scss,html,htm,json,md,markdown,yml,yaml}\" --log-level warn", "format:check": "prettier --ignore-path .gitignore --check \"**/*.{vue,css,less,scss,html,htm,json,md,markdown,yml,yaml}\" --log-level warn", "postinstall": "node ./src/scripts/postinstall.js", "lint": "npm run format:check && xo", "lint:fix": "npm run format && xo --fix", "prepare": "husky .github/husky", "test": "c8 ava" }, "commitlint": { "extends": [ "@vidavidorra" ] }, "xo": { "prettier": true, "space": true }, "prettier": { "singleQuote": true }, "release": { "branches": [ "main", { "name": "beta", "prerelease": true } ], "plugins": [ [ "@semantic-release/commit-analyzer", { "releaseRules": [ { "type": "perf", "release": "patch" }, { "type": "revert", "release": "patch" }, { "type": "docs", "release": "patch" }, { "type": "chore", "release": false }, { "type": "refactor", "release": "patch" }, { "type": "test", "release": "patch" }, { "type": "build", "release": "patch" }, { "type": "ci", "release": "patch" } ] } ], "@semantic-release/release-notes-generator", "@semantic-release/changelog", [ "@semantic-release/exec", { "prepareCmd": "prettier --write CHANGELOG.md" } ], [ "@semantic-release/npm", { "tarballDir": "dist" } ], "@semantic-release/git", [ "@semantic-release/github", { "assets": "dist/*.tgz" } ] ], "preset": "conventionalcommits", "presetConfig": { "types": [ { "type": "feat", "section": "Features" }, { "type": "fix", "section": "Bug Fixes" }, { "type": "perf", "section": "Performance Improvements" }, { "type": "revert", "section": "Reverts" }, { "type": "docs", "section": "Documentation" }, { "type": "style", "section": "Styles" }, { "type": "chore", "section": "Miscellaneous Chores", "hidden": true }, { "type": "refactor", "section": "Code Refactoring" }, { "type": "test", "section": "Tests" }, { "type": "build", "section": "Build System" }, { "type": "ci", "section": "Continuous Integration" } ] } }, "ava": { "files": [ "!worktrees", "src/**/*.test.ts" ], "typescript": { "rewritePaths": { "src/": "dist/" }, "compile": "tsc" } }, "c8": { "all": true, "include": [ "dist/**/*.js" ], "reporter": [ "cobertura", "html", "lcovonly", "text-summary" ] }, "dependencies": { "@inquirer/prompts": "7.5.0", "prettier": "3.5.3", "sort-package-json": "3.0.0", "typescript": "5.8.3", "validate-npm-package-name": "6.0.0", "yaml": "2.7.1", "zod": "3.24.3" }, "devDependencies": { "@ava/typescript": "5.0.0", "@commitlint/cli": "19.8.0", "@semantic-release/changelog": "6.0.3", "@semantic-release/exec": "7.0.3", "@semantic-release/git": "10.0.1", "@types/node": "22.14.1", "@types/sinon": "17.0.4", "@types/validate-npm-package-name": "4.0.2", "@vidavidorra/commitlint-config": "7.0.13", "ava": "6.2.0", "c8": "10.1.3", "husky": "9.1.7", "lint-staged": "15.5.1", "semantic-release": "24.2.3", "sinon": "20.0.0", "xo": "0.60.0" }, "engines": { "node": ">=20" }, "publishConfig": { "access": "public" }, "overrides": { "conventional-changelog-conventionalcommits": ">= 8.0.0" } }