Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: github-actions
directory: '/'
schedule:
interval: daily
target-branch: main
- package-ecosystem: npm
directory: '/'
schedule:
interval: daily
target-branch: main
7 changes: 7 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# - npm
legacy-peer-deps=true

# - pnpm
auto-install-peers=true
shamefully-hoist=true
strict-peer-dependencies=false
94 changes: 55 additions & 39 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,33 @@
{
"name": "create-create-app",
"description": "Create your own `create-something` app.",
"version": "7.3.0",
"name": "create-create-cli",
"description": "Create your own `create-something` cli.",
"version": "7.3.2",
"author": "Yasuaki Uechi <[email protected]>",
"contributors": [
{
"email": "[email protected]",
"name": "Yasuaki Uechi"
},
{
"email": "[email protected]",
"name": "Martin Oppitz",
"url": "https://martinoppitz.com"
}
],
"scripts": {
"build": "npm run tsup -- --minify --dts",
"clean": "shx rm -rf lib 'templates/*/{yarn.lock,package-lock.json,node_modules}'",
"depcheck": "depcheck --ignore-bin-package --skip-missing",
"dev": "npm run tsup -- --watch",
"ncu:major": "ncu",
"ncu:minor": "ncu -t minor -u",
"ncu:patch": "ncu -t patch -u",
"prepublishOnly": "npm run clean && npm run build",
"release": "release-it",
"test": "run-p build typecheck && vitest --run",
"tsup": "tsup src/index.ts src/cli.ts -d lib",
"typecheck": "tsc --noEmit"
"typecheck": "tsc --noEmit",
"update": "pnpm ncu:patch && pnpm ncu:minor && pnpm ncu:major"
},
"types": "lib/index.d.ts",
"main": "lib/index.js",
Expand All @@ -23,53 +39,53 @@
"templates"
],
"dependencies": {
"@types/yargs-interactive": "^2.1.3",
"chalk": "^4",
"cross-spawn": "^7.0.3",
"epicfail": "^3.0.0",
"execa": "^5",
"gitconfig": "^2.0.8",
"globby": "^11",
"handlebars": "^4.7.7",
"is-utf8": "^0.2.1",
"license.js": "^3.1.2",
"slash": "^3",
"uuid": "^8.3.2",
"yargs-interactive": "^3.0.1"
"@types/yargs-interactive": "2.1.3",
"chalk": "4.1.2",
"cross-spawn": "7.0.3",
"epicfail": "3.0.0",
"execa": "5.1.1",
"gitconfig": "2.0.8",
"globby": "11.1.0",
"handlebars": "4.7.7",
"is-utf8": "0.2.1",
"license.js": "3.1.2",
"slash": "3.0.0",
"uuid": "8.3.2",
"yargs-interactive": "3.0.1"
},
"devDependencies": {
"@release-it/conventional-changelog": "^5.0.0",
"@types/cross-spawn": "^6.0.2",
"@types/node": "^18.0.0",
"@types/uuid": "^8.3.4",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"mdmod": "^2.0.0",
"mdmod-plugin-toc": "^0.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"release-it": "^15.1.1",
"shx": "^0.3.4",
"ts-node": "^10.8.1",
"tsup": "^6.1.2",
"typescript": "^4.7.4",
"vitest": "^0.16.0"
"@release-it/conventional-changelog": "5.1.1",
"@types/cross-spawn": "6.0.2",
"@types/node": "18.11.9",
"@types/uuid": "8.3.4",
"depcheck": "1.4.3",
"husky": "8.0.2",
"lint-staged": "13.0.3",
"npm-run-all": "4.1.5",
"npm-check-updates": "16.4.1",
"prettier": "2.7.1",
"pretty-quick": "3.1.3",
"release-it": "15.5.0",
"shx": "0.3.4",
"ts-node": "10.9.1",
"tsup": "6.5.0",
"typescript": "4.9.3",
"vitest": "0.25.2"
},
"lint-staged": {
"*.md": "mdmod"
},
"homepage": "https://github.com/uetchy/create-create-app",
"homepage": "https://github.com/deleonio/create-create-cli",
"repository": {
"type": "git",
"url": "https://github.com/uetchy/create-create-app.git"
"url": "https://github.com/deleonio/create-create-cli.git"
},
"bugs": {
"url": "https://github.com/uetchy/create-create-app/issues"
"url": "https://github.com/deleonio/create-create-cli/issues"
},
"license": "MIT",
"keywords": [
"create-app",
"create-create-app"
"create-cli",
"create-create-cli"
]
}
Loading