@kitschpatrol/create-project 1.2.4 → 1.2.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. package/dist/index.js +1 -3623
  2. package/package.json +17 -10
  3. package/templates/cli/.github/workflows/github-release.yml +1 -1
  4. package/templates/cli/.github/workflows/set-github-metadata.yml +2 -2
  5. package/templates/cli/.npmrc +0 -2
  6. package/templates/cli/.vscode/settings.json +1 -1
  7. package/templates/cli/package.json +7 -6
  8. package/templates/cli+library/.github/workflows/github-release.yml +1 -1
  9. package/templates/cli+library/.github/workflows/set-github-metadata.yml +2 -2
  10. package/templates/cli+library/.npmrc +0 -2
  11. package/templates/cli+library/.vscode/settings.json +1 -1
  12. package/templates/cli+library/package.json +11 -7
  13. package/templates/cli+library/tsconfig.build.json +1 -1
  14. package/templates/cli+library/tsconfig.json +1 -1
  15. package/templates/cli+library/tsdown.config.ts +8 -0
  16. package/templates/electron/.github/workflows/github-release.yml +1 -1
  17. package/templates/electron/.github/workflows/set-github-metadata.yml +2 -2
  18. package/templates/electron/.npmrc +0 -2
  19. package/templates/electron/.vscode/settings.json +1 -1
  20. package/templates/electron/package.json +7 -6
  21. package/templates/library/.github/workflows/github-release.yml +1 -1
  22. package/templates/library/.github/workflows/set-github-metadata.yml +2 -2
  23. package/templates/library/.npmrc +0 -2
  24. package/templates/library/.vscode/settings.json +1 -1
  25. package/templates/library/package.json +9 -6
  26. package/templates/library/tsconfig.build.json +1 -1
  27. package/templates/library/tsdown.config.ts +14 -0
  28. package/templates/minimal/.github/workflows/github-release.yml +1 -1
  29. package/templates/minimal/.github/workflows/set-github-metadata.yml +2 -2
  30. package/templates/minimal/.npmrc +0 -2
  31. package/templates/minimal/.vscode/settings.json +1 -1
  32. package/templates/minimal/package.json +5 -4
  33. package/templates/minimal/tsconfig.build.json +1 -1
  34. package/templates/unplugin/.github/workflows/github-release.yml +1 -1
  35. package/templates/unplugin/.github/workflows/set-github-metadata.yml +2 -2
  36. package/templates/unplugin/.npmrc +0 -2
  37. package/templates/unplugin/.vscode/settings.json +1 -1
  38. package/templates/unplugin/package.json +5 -4
  39. package/templates/web/.github/workflows/github-release.yml +1 -1
  40. package/templates/web/.github/workflows/set-github-metadata.yml +2 -2
  41. package/templates/web/.npmrc +0 -2
  42. package/templates/web/.vscode/settings.json +1 -1
  43. package/templates/web/package.json +6 -5
@@ -50,7 +50,7 @@
50
50
  ".env": ".env.*, .template.env",
51
51
  "*.js": "${basename}.ts.map, ${basename}.js.map, ${basename}.d.ts, ${basename}.d.ts.map, ${basename}.d.js.map",
52
52
  "*.ts": "${basename}.ts.map, ${basename}.d.ts, ${basename}.d.ts.map",
53
- "package.json": ".*.cjs, .*.cts, .*.js, .*.json, .*.json5, .*.jsonc, .*.mjs, .*.mts, .*.toml, .*.ts, .*.yaml, .*.yml, .*ignore, .*rc, *config.cjs, *config.cts, *config.js, *config.json, *config.json5, *config.jsonc, *config.mjs, *config.mts, *config.toml, *config.ts, *config.yaml, *config.yml, lerna.json, netlify.toml, package-lock.json, pnpm*, turbo.json, vercel.json, workspace*, wrangler.toml, wrangler.json, wrangler.jsonc, yarn.lock, yarn*",
53
+ "package.json": ".*.cjs, .*.cts, .*.js, .*.json, .*.json5, .*.jsonc, .*.mjs, .*.mts, .*.toml, .*.ts, .*.yaml, .*.yml, .*ignore, .*rc, .node-version, *config.cjs, *config.cts, *config.js, *config.json, *config.json5, *config.jsonc, *config.mjs, *config.mts, *config.toml, *config.ts, *config.yaml, *config.yml, tsconfig.*.json, lerna.json, netlify.toml, package-lock.json, pnpm*, turbo.json, vercel.json, workspace*, wrangler.toml, wrangler.json, wrangler.jsonc, yarn.lock, yarn*",
54
54
  "readme.md": "authors*, backers*, changelog*, citation*, code_of_conduct*, contributing*, contributors*, copying*, credits*, governance*, history*, license*, maintainers*, release_notes*, security*, sponsors*"
55
55
  },
56
56
  "prettier.documentSelectors": [
@@ -18,6 +18,7 @@
18
18
  "email": "{{{author-email}}}",
19
19
  "url": "{{{author-url}}}"
20
20
  },
21
+ "sideEffects": false,
21
22
  "type": "module",
22
23
  "scripts": {
23
24
  "build": "vite build",
@@ -30,17 +31,17 @@
30
31
  "test": "echo \"Error: no test specified\" && exit 1"
31
32
  },
32
33
  "dependencies": {
33
- "@types/node": "~20.19.30"
34
+ "@types/node": "~20.19.35"
34
35
  },
35
36
  "devDependencies": {
36
- "@kitschpatrol/shared-config": "^5.13.0",
37
- "bumpp": "^10.4.0",
37
+ "@kitschpatrol/shared-config": "^6.0.1",
38
+ "bumpp": "^10.4.1",
38
39
  "poptab": "^1.0.4",
39
40
  "typescript": "~5.9.3",
40
41
  "vite": "npm:rolldown-vite@7.1.17",
41
- "vite-plugin-mkcert": "^1.17.9"
42
+ "vite-plugin-mkcert": "^1.17.10"
42
43
  },
43
- "packageManager": "pnpm@10.28.1",
44
+ "packageManager": "pnpm@10.30.3",
44
45
  "engines": {
45
46
  "node": ">=20.19.0"
46
47
  }