@kitschpatrol/create-project 1.2.4 → 1.2.5
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.
- package/dist/index.js +1 -3623
- package/package.json +16 -10
- package/templates/cli/.vscode/settings.json +1 -1
- package/templates/cli/package.json +6 -6
- package/templates/cli+library/.vscode/settings.json +1 -1
- package/templates/cli+library/package.json +10 -7
- package/templates/cli+library/tsconfig.build.json +1 -1
- package/templates/cli+library/tsconfig.json +1 -1
- package/templates/cli+library/tsdown.config.ts +8 -0
- package/templates/electron/.vscode/settings.json +1 -1
- package/templates/electron/package.json +6 -6
- package/templates/library/.vscode/settings.json +1 -1
- package/templates/library/package.json +8 -6
- package/templates/library/tsconfig.build.json +1 -1
- package/templates/library/tsdown.config.ts +14 -0
- package/templates/minimal/.vscode/settings.json +1 -1
- package/templates/minimal/package.json +4 -4
- package/templates/minimal/tsconfig.build.json +1 -1
- package/templates/unplugin/.vscode/settings.json +1 -1
- package/templates/unplugin/package.json +4 -4
- package/templates/web/.vscode/settings.json +1 -1
- package/templates/web/package.json +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kitschpatrol/create-project",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.5",
|
|
4
4
|
"description": "Kitschpatrol's TypeScript project templates.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -30,27 +30,33 @@
|
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"bingo": "^0.9.2",
|
|
32
32
|
"bingo-fs": "^0.5.6",
|
|
33
|
-
"bingo-handlebars": "^0.1.0"
|
|
33
|
+
"bingo-handlebars": "^0.1.0",
|
|
34
|
+
"zod": "^3.25.76"
|
|
34
35
|
},
|
|
35
36
|
"devDependencies": {
|
|
36
|
-
"@kitschpatrol/shared-config": "^
|
|
37
|
-
"@types/node": "~20.19.
|
|
38
|
-
"bumpp": "^10.4.
|
|
39
|
-
"mdat": "^1.3.
|
|
37
|
+
"@kitschpatrol/shared-config": "^6.0.0",
|
|
38
|
+
"@types/node": "~20.19.33",
|
|
39
|
+
"bumpp": "^10.4.1",
|
|
40
|
+
"mdat": "^1.3.5",
|
|
40
41
|
"taze": "^19.9.2",
|
|
41
|
-
"tsdown": "^0.20.
|
|
42
|
+
"tsdown": "^0.20.3",
|
|
42
43
|
"typescript": "~5.9.3",
|
|
43
|
-
"vitest": "^4.0.18"
|
|
44
|
-
"zod": "^3.25.76"
|
|
44
|
+
"vitest": "^4.0.18"
|
|
45
45
|
},
|
|
46
46
|
"engines": {
|
|
47
47
|
"node": ">=20.19.0"
|
|
48
48
|
},
|
|
49
|
+
"devEngines": {
|
|
50
|
+
"runtime": {
|
|
51
|
+
"name": "node",
|
|
52
|
+
"version": ">=22.21.0"
|
|
53
|
+
}
|
|
54
|
+
},
|
|
49
55
|
"publishConfig": {
|
|
50
56
|
"access": "public"
|
|
51
57
|
},
|
|
52
58
|
"scripts": {
|
|
53
|
-
"build": "tsdown
|
|
59
|
+
"build": "tsdown",
|
|
54
60
|
"clean": "git rm -f pnpm-lock.yaml ; git clean -fdX",
|
|
55
61
|
"fix": "ksc fix",
|
|
56
62
|
"lint": "ksc-repo lint ; mdat readme check readme.md ; ksc-typescript lint ; ksc-eslint lint ; ksc-stylelint lint ; ksc-cspell lint ; ksc-knip lint ; ksc-prettier lint",
|
|
@@ -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": [
|
|
@@ -34,19 +34,19 @@
|
|
|
34
34
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@types/node": "~20.19.
|
|
37
|
+
"@types/node": "~20.19.33",
|
|
38
38
|
"@types/yargs": "^17.0.35",
|
|
39
39
|
"lognow": "^0.4.1",
|
|
40
40
|
"yargs": "^18.0.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@kitschpatrol/shared-config": "^
|
|
44
|
-
"bumpp": "^10.4.
|
|
45
|
-
"mdat-plugin-cli-help": "^1.0.
|
|
46
|
-
"tsdown": "^0.20.
|
|
43
|
+
"@kitschpatrol/shared-config": "^6.0.0",
|
|
44
|
+
"bumpp": "^10.4.1",
|
|
45
|
+
"mdat-plugin-cli-help": "^1.0.7",
|
|
46
|
+
"tsdown": "^0.20.3",
|
|
47
47
|
"typescript": "~5.9.3"
|
|
48
48
|
},
|
|
49
|
-
"packageManager": "pnpm@10.
|
|
49
|
+
"packageManager": "pnpm@10.30.2",
|
|
50
50
|
"engines": {
|
|
51
51
|
"node": ">=20.19.0"
|
|
52
52
|
}
|
|
@@ -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": [
|
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
},
|
|
28
28
|
"main": "./dist/lib/index.js",
|
|
29
29
|
"module": "./dist/lib/index.js",
|
|
30
|
+
"types": "./dist/lib/index.d.ts",
|
|
30
31
|
"bin": {
|
|
31
32
|
"{{{cli-command-name}}}": "dist/bin/cli.js"
|
|
32
33
|
},
|
|
@@ -34,7 +35,7 @@
|
|
|
34
35
|
"dist/*"
|
|
35
36
|
],
|
|
36
37
|
"scripts": {
|
|
37
|
-
"build": "tsdown
|
|
38
|
+
"build": "tsdown",
|
|
38
39
|
"clean": "git rm -f pnpm-lock.yaml ; git clean -fdX",
|
|
39
40
|
"fix": "ksc fix",
|
|
40
41
|
"lint": "ksc lint",
|
|
@@ -42,19 +43,21 @@
|
|
|
42
43
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
43
44
|
},
|
|
44
45
|
"dependencies": {
|
|
45
|
-
"@types/node": "~20.19.
|
|
46
|
+
"@types/node": "~20.19.33",
|
|
46
47
|
"@types/yargs": "^17.0.35",
|
|
47
48
|
"lognow": "^0.4.1",
|
|
48
49
|
"yargs": "^18.0.0"
|
|
49
50
|
},
|
|
50
51
|
"devDependencies": {
|
|
51
|
-
"@
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
52
|
+
"@arethetypeswrong/core": "^0.18.2",
|
|
53
|
+
"@kitschpatrol/shared-config": "^6.0.0",
|
|
54
|
+
"bumpp": "^10.4.1",
|
|
55
|
+
"mdat-plugin-cli-help": "^1.0.7",
|
|
56
|
+
"publint": "^0.3.17",
|
|
57
|
+
"tsdown": "^0.20.3",
|
|
55
58
|
"typescript": "~5.9.3"
|
|
56
59
|
},
|
|
57
|
-
"packageManager": "pnpm@10.
|
|
60
|
+
"packageManager": "pnpm@10.30.2",
|
|
58
61
|
"engines": {
|
|
59
62
|
"node": ">=20.19.0"
|
|
60
63
|
}
|
|
@@ -1,18 +1,26 @@
|
|
|
1
1
|
import { defineConfig } from 'tsdown'
|
|
2
2
|
|
|
3
3
|
export default defineConfig([
|
|
4
|
+
// CLI tool
|
|
4
5
|
{
|
|
5
6
|
dts: false,
|
|
6
7
|
entry: 'src/bin/cli.ts',
|
|
7
8
|
fixedExtension: false,
|
|
9
|
+
minify: true,
|
|
8
10
|
outDir: 'dist/bin',
|
|
9
11
|
platform: 'node',
|
|
10
12
|
},
|
|
13
|
+
// Library
|
|
11
14
|
{
|
|
15
|
+
attw: {
|
|
16
|
+
profile: 'esm-only',
|
|
17
|
+
},
|
|
12
18
|
entry: 'src/lib/index.ts',
|
|
19
|
+
fixedExtension: false,
|
|
13
20
|
minify: true,
|
|
14
21
|
outDir: 'dist/lib',
|
|
15
22
|
platform: 'neutral',
|
|
23
|
+
publint: true,
|
|
16
24
|
tsconfig: 'tsconfig.build.json',
|
|
17
25
|
},
|
|
18
26
|
])
|
|
@@ -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": [
|
|
@@ -30,19 +30,19 @@
|
|
|
30
30
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@types/node": "~22.19.
|
|
33
|
+
"@types/node": "~22.19.11",
|
|
34
34
|
"lognow": "^0.4.1"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@kitschpatrol/shared-config": "^
|
|
38
|
-
"bumpp": "^10.4.
|
|
39
|
-
"electron": "^40.
|
|
40
|
-
"electron-builder": "^26.
|
|
37
|
+
"@kitschpatrol/shared-config": "^6.0.0",
|
|
38
|
+
"bumpp": "^10.4.1",
|
|
39
|
+
"electron": "^40.6.0",
|
|
40
|
+
"electron-builder": "^26.8.1",
|
|
41
41
|
"typescript": "~5.9.3",
|
|
42
42
|
"vite": "npm:rolldown-vite@7.3.1",
|
|
43
43
|
"vite-plugin-electron": "^0.29.0"
|
|
44
44
|
},
|
|
45
|
-
"packageManager": "pnpm@10.
|
|
45
|
+
"packageManager": "pnpm@10.30.2",
|
|
46
46
|
"engines": {
|
|
47
47
|
"node": ">=22.18.0"
|
|
48
48
|
}
|
|
@@ -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": [
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"dist/*"
|
|
31
31
|
],
|
|
32
32
|
"scripts": {
|
|
33
|
-
"build": "tsdown
|
|
33
|
+
"build": "tsdown",
|
|
34
34
|
"clean": "git rm -f pnpm-lock.yaml ; git clean -fdX",
|
|
35
35
|
"fix": "ksc fix",
|
|
36
36
|
"lint": "ksc lint",
|
|
@@ -38,16 +38,18 @@
|
|
|
38
38
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@types/node": "~20.19.
|
|
41
|
+
"@types/node": "~20.19.33",
|
|
42
42
|
"lognow": "^0.4.1"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@
|
|
46
|
-
"
|
|
47
|
-
"
|
|
45
|
+
"@arethetypeswrong/core": "^0.18.2",
|
|
46
|
+
"@kitschpatrol/shared-config": "^6.0.0",
|
|
47
|
+
"bumpp": "^10.4.1",
|
|
48
|
+
"publint": "^0.3.17",
|
|
49
|
+
"tsdown": "^0.20.3",
|
|
48
50
|
"typescript": "~5.9.3"
|
|
49
51
|
},
|
|
50
|
-
"packageManager": "pnpm@10.
|
|
52
|
+
"packageManager": "pnpm@10.30.2",
|
|
51
53
|
"engines": {
|
|
52
54
|
"node": ">=20.19.0"
|
|
53
55
|
}
|
|
@@ -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": [
|
|
@@ -29,15 +29,15 @@
|
|
|
29
29
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@types/node": "~20.19.
|
|
32
|
+
"@types/node": "~20.19.33"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@kitschpatrol/shared-config": "^
|
|
36
|
-
"bumpp": "^10.4.
|
|
35
|
+
"@kitschpatrol/shared-config": "^6.0.0",
|
|
36
|
+
"bumpp": "^10.4.1",
|
|
37
37
|
"tsx": "^4.21.0",
|
|
38
38
|
"typescript": "~5.9.3"
|
|
39
39
|
},
|
|
40
|
-
"packageManager": "pnpm@10.
|
|
40
|
+
"packageManager": "pnpm@10.30.2",
|
|
41
41
|
"engines": {
|
|
42
42
|
"node": ">=20.19.0"
|
|
43
43
|
}
|
|
@@ -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": [
|
|
@@ -68,14 +68,14 @@
|
|
|
68
68
|
"unplugin-utils": "^0.3.1"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
|
-
"@kitschpatrol/shared-config": "^
|
|
71
|
+
"@kitschpatrol/shared-config": "^6.0.0",
|
|
72
72
|
"@sxzz/test-utils": "^0.5.15",
|
|
73
|
-
"bumpp": "^10.4.
|
|
74
|
-
"tsdown": "^0.20.
|
|
73
|
+
"bumpp": "^10.4.1",
|
|
74
|
+
"tsdown": "^0.20.3",
|
|
75
75
|
"typescript": "~5.9.3",
|
|
76
76
|
"vitest": "^4.0.18"
|
|
77
77
|
},
|
|
78
|
-
"packageManager": "pnpm@10.
|
|
78
|
+
"packageManager": "pnpm@10.30.2",
|
|
79
79
|
"engines": {
|
|
80
80
|
"node": ">=22.16.0"
|
|
81
81
|
}
|
|
@@ -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": [
|
|
@@ -30,17 +30,17 @@
|
|
|
30
30
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@types/node": "~20.19.
|
|
33
|
+
"@types/node": "~20.19.33"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@kitschpatrol/shared-config": "^
|
|
37
|
-
"bumpp": "^10.4.
|
|
36
|
+
"@kitschpatrol/shared-config": "^6.0.0",
|
|
37
|
+
"bumpp": "^10.4.1",
|
|
38
38
|
"poptab": "^1.0.4",
|
|
39
39
|
"typescript": "~5.9.3",
|
|
40
40
|
"vite": "npm:rolldown-vite@7.1.17",
|
|
41
41
|
"vite-plugin-mkcert": "^1.17.9"
|
|
42
42
|
},
|
|
43
|
-
"packageManager": "pnpm@10.
|
|
43
|
+
"packageManager": "pnpm@10.30.2",
|
|
44
44
|
"engines": {
|
|
45
45
|
"node": ">=20.19.0"
|
|
46
46
|
}
|