@kitschpatrol/create-project 1.2.1 → 1.2.3
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/license.txt +1 -1
- package/package.json +7 -7
- package/templates/cli/.vscode/settings.json +4 -2
- package/templates/cli/package.json +6 -6
- package/templates/cli+library/.vscode/settings.json +4 -2
- package/templates/cli+library/package.json +6 -6
- package/templates/electron/.vscode/settings.json +4 -2
- package/templates/electron/package.json +5 -17
- package/templates/electron/pnpm-workspace.yaml +7 -0
- package/templates/library/.vscode/settings.json +4 -2
- package/templates/library/package.json +5 -5
- package/templates/minimal/.vscode/settings.json +4 -2
- package/templates/minimal/package.json +4 -4
- package/templates/unplugin/.vscode/settings.json +4 -2
- package/templates/unplugin/package.json +5 -5
- package/templates/web/.vscode/settings.json +4 -2
- package/templates/web/package.json +4 -9
- package/templates/web/pnpm-workspace.yaml +3 -0
package/license.txt
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kitschpatrol/create-project",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.3",
|
|
4
4
|
"description": "Kitschpatrol's TypeScript project templates.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -33,14 +33,14 @@
|
|
|
33
33
|
"bingo-handlebars": "^0.1.0"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@kitschpatrol/shared-config": "^5.
|
|
37
|
-
"@types/node": "~20.19.
|
|
38
|
-
"bumpp": "^10.
|
|
39
|
-
"mdat": "^1.3.
|
|
36
|
+
"@kitschpatrol/shared-config": "^5.12.0",
|
|
37
|
+
"@types/node": "~20.19.30",
|
|
38
|
+
"bumpp": "^10.4.0",
|
|
39
|
+
"mdat": "^1.3.4",
|
|
40
40
|
"taze": "^19.9.2",
|
|
41
|
-
"tsdown": "^0.
|
|
41
|
+
"tsdown": "^0.19.0",
|
|
42
42
|
"typescript": "~5.9.3",
|
|
43
|
-
"vitest": "^4.0.
|
|
43
|
+
"vitest": "^4.0.17",
|
|
44
44
|
"zod": "^3.25.76"
|
|
45
45
|
},
|
|
46
46
|
"engines": {
|
|
@@ -17,7 +17,9 @@
|
|
|
17
17
|
"cSpell.enabled": true,
|
|
18
18
|
"cSpell.workspaceRootPath": ".",
|
|
19
19
|
"editor.codeActionsOnSave": {
|
|
20
|
-
"source.fixAll": "explicit",
|
|
20
|
+
"source.fixAll.ts": "explicit",
|
|
21
|
+
"source.fixAll.eslint": "explicit",
|
|
22
|
+
"source.fixAll.stylelint": "explicit",
|
|
21
23
|
"source.organizeImports": "never"
|
|
22
24
|
},
|
|
23
25
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
@@ -48,7 +50,7 @@
|
|
|
48
50
|
".env": ".env.*, .template.env",
|
|
49
51
|
"*.js": "${basename}.ts.map, ${basename}.js.map, ${basename}.d.ts, ${basename}.d.ts.map, ${basename}.d.js.map",
|
|
50
52
|
"*.ts": "${basename}.ts.map, ${basename}.d.ts, ${basename}.d.ts.map",
|
|
51
|
-
"package.json": "
|
|
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*",
|
|
52
54
|
"readme.md": "authors*, backers*, changelog*, citation*, code_of_conduct*, contributing*, contributors*, copying*, credits*, governance*, history*, license*, maintainers*, release_notes*, security*, sponsors*"
|
|
53
55
|
},
|
|
54
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.30",
|
|
38
38
|
"@types/yargs": "^17.0.35",
|
|
39
39
|
"lognow": "^0.3.2",
|
|
40
40
|
"yargs": "^18.0.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@kitschpatrol/shared-config": "^5.
|
|
44
|
-
"bumpp": "^10.
|
|
45
|
-
"mdat-plugin-cli-help": "^1.0.
|
|
46
|
-
"tsdown": "^0.
|
|
43
|
+
"@kitschpatrol/shared-config": "^5.12.0",
|
|
44
|
+
"bumpp": "^10.4.0",
|
|
45
|
+
"mdat-plugin-cli-help": "^1.0.5",
|
|
46
|
+
"tsdown": "^0.19.0",
|
|
47
47
|
"typescript": "~5.9.3"
|
|
48
48
|
},
|
|
49
|
-
"packageManager": "pnpm@10.
|
|
49
|
+
"packageManager": "pnpm@10.28.1",
|
|
50
50
|
"engines": {
|
|
51
51
|
"node": ">=20.19.0"
|
|
52
52
|
}
|
|
@@ -17,7 +17,9 @@
|
|
|
17
17
|
"cSpell.enabled": true,
|
|
18
18
|
"cSpell.workspaceRootPath": ".",
|
|
19
19
|
"editor.codeActionsOnSave": {
|
|
20
|
-
"source.fixAll": "explicit",
|
|
20
|
+
"source.fixAll.ts": "explicit",
|
|
21
|
+
"source.fixAll.eslint": "explicit",
|
|
22
|
+
"source.fixAll.stylelint": "explicit",
|
|
21
23
|
"source.organizeImports": "never"
|
|
22
24
|
},
|
|
23
25
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
@@ -48,7 +50,7 @@
|
|
|
48
50
|
".env": ".env.*, .template.env",
|
|
49
51
|
"*.js": "${basename}.ts.map, ${basename}.js.map, ${basename}.d.ts, ${basename}.d.ts.map, ${basename}.d.js.map",
|
|
50
52
|
"*.ts": "${basename}.ts.map, ${basename}.d.ts, ${basename}.d.ts.map",
|
|
51
|
-
"package.json": "
|
|
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*",
|
|
52
54
|
"readme.md": "authors*, backers*, changelog*, citation*, code_of_conduct*, contributing*, contributors*, copying*, credits*, governance*, history*, license*, maintainers*, release_notes*, security*, sponsors*"
|
|
53
55
|
},
|
|
54
56
|
"prettier.documentSelectors": [
|
|
@@ -42,19 +42,19 @@
|
|
|
42
42
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@types/node": "~20.19.
|
|
45
|
+
"@types/node": "~20.19.30",
|
|
46
46
|
"@types/yargs": "^17.0.35",
|
|
47
47
|
"lognow": "^0.3.2",
|
|
48
48
|
"yargs": "^18.0.0"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@kitschpatrol/shared-config": "^5.
|
|
52
|
-
"bumpp": "^10.
|
|
53
|
-
"mdat-plugin-cli-help": "^1.0.
|
|
54
|
-
"tsdown": "^0.
|
|
51
|
+
"@kitschpatrol/shared-config": "^5.12.0",
|
|
52
|
+
"bumpp": "^10.4.0",
|
|
53
|
+
"mdat-plugin-cli-help": "^1.0.5",
|
|
54
|
+
"tsdown": "^0.19.0",
|
|
55
55
|
"typescript": "~5.9.3"
|
|
56
56
|
},
|
|
57
|
-
"packageManager": "pnpm@10.
|
|
57
|
+
"packageManager": "pnpm@10.28.1",
|
|
58
58
|
"engines": {
|
|
59
59
|
"node": ">=20.19.0"
|
|
60
60
|
}
|
|
@@ -17,7 +17,9 @@
|
|
|
17
17
|
"cSpell.enabled": true,
|
|
18
18
|
"cSpell.workspaceRootPath": ".",
|
|
19
19
|
"editor.codeActionsOnSave": {
|
|
20
|
-
"source.fixAll": "explicit",
|
|
20
|
+
"source.fixAll.ts": "explicit",
|
|
21
|
+
"source.fixAll.eslint": "explicit",
|
|
22
|
+
"source.fixAll.stylelint": "explicit",
|
|
21
23
|
"source.organizeImports": "never"
|
|
22
24
|
},
|
|
23
25
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
@@ -48,7 +50,7 @@
|
|
|
48
50
|
".env": ".env.*, .template.env",
|
|
49
51
|
"*.js": "${basename}.ts.map, ${basename}.js.map, ${basename}.d.ts, ${basename}.d.ts.map, ${basename}.d.js.map",
|
|
50
52
|
"*.ts": "${basename}.ts.map, ${basename}.d.ts, ${basename}.d.ts.map",
|
|
51
|
-
"package.json": "
|
|
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*",
|
|
52
54
|
"readme.md": "authors*, backers*, changelog*, citation*, code_of_conduct*, contributing*, contributors*, copying*, credits*, governance*, history*, license*, maintainers*, release_notes*, security*, sponsors*"
|
|
53
55
|
},
|
|
54
56
|
"prettier.documentSelectors": [
|
|
@@ -30,32 +30,20 @@
|
|
|
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.7",
|
|
34
34
|
"lognow": "^0.3.2"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@kitschpatrol/shared-config": "^5.
|
|
38
|
-
"bumpp": "^10.
|
|
37
|
+
"@kitschpatrol/shared-config": "^5.12.0",
|
|
38
|
+
"bumpp": "^10.4.0",
|
|
39
39
|
"electron": "^39.2.7",
|
|
40
|
-
"electron-builder": "^26.0
|
|
40
|
+
"electron-builder": "^26.4.0",
|
|
41
41
|
"typescript": "~5.9.3",
|
|
42
42
|
"vite": "npm:rolldown-vite@7.2.2",
|
|
43
43
|
"vite-plugin-electron": "^0.29.0"
|
|
44
44
|
},
|
|
45
|
-
"packageManager": "pnpm@10.
|
|
45
|
+
"packageManager": "pnpm@10.28.1",
|
|
46
46
|
"engines": {
|
|
47
47
|
"node": ">=22.18.0"
|
|
48
|
-
},
|
|
49
|
-
"pnpm": {
|
|
50
|
-
"onlyBuiltDependencies": [
|
|
51
|
-
"electron",
|
|
52
|
-
"electron-winstaller",
|
|
53
|
-
"esbuild",
|
|
54
|
-
"puppeteer",
|
|
55
|
-
"unrs-resolver"
|
|
56
|
-
],
|
|
57
|
-
"overrides": {
|
|
58
|
-
"vite": "npm:rolldown-vite@7.2.2"
|
|
59
|
-
}
|
|
60
48
|
}
|
|
61
49
|
}
|
|
@@ -1,8 +1,15 @@
|
|
|
1
1
|
# Required by @kitschpatrol/shared-config
|
|
2
2
|
|
|
3
3
|
onlyBuiltDependencies:
|
|
4
|
+
- electron
|
|
5
|
+
- electron-winstaller
|
|
4
6
|
- esbuild
|
|
7
|
+
- puppeteer
|
|
5
8
|
- unrs-resolver
|
|
9
|
+
- unrs-resolver
|
|
10
|
+
|
|
11
|
+
overrides:
|
|
12
|
+
'vite': 'npm:rolldown-vite@7.3.0'
|
|
6
13
|
|
|
7
14
|
publicHoistPattern:
|
|
8
15
|
- '@kitschpatrol/repo-config'
|
|
@@ -17,7 +17,9 @@
|
|
|
17
17
|
"cSpell.enabled": true,
|
|
18
18
|
"cSpell.workspaceRootPath": ".",
|
|
19
19
|
"editor.codeActionsOnSave": {
|
|
20
|
-
"source.fixAll": "explicit",
|
|
20
|
+
"source.fixAll.ts": "explicit",
|
|
21
|
+
"source.fixAll.eslint": "explicit",
|
|
22
|
+
"source.fixAll.stylelint": "explicit",
|
|
21
23
|
"source.organizeImports": "never"
|
|
22
24
|
},
|
|
23
25
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
@@ -48,7 +50,7 @@
|
|
|
48
50
|
".env": ".env.*, .template.env",
|
|
49
51
|
"*.js": "${basename}.ts.map, ${basename}.js.map, ${basename}.d.ts, ${basename}.d.ts.map, ${basename}.d.js.map",
|
|
50
52
|
"*.ts": "${basename}.ts.map, ${basename}.d.ts, ${basename}.d.ts.map",
|
|
51
|
-
"package.json": "
|
|
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*",
|
|
52
54
|
"readme.md": "authors*, backers*, changelog*, citation*, code_of_conduct*, contributing*, contributors*, copying*, credits*, governance*, history*, license*, maintainers*, release_notes*, security*, sponsors*"
|
|
53
55
|
},
|
|
54
56
|
"prettier.documentSelectors": [
|
|
@@ -38,16 +38,16 @@
|
|
|
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.30",
|
|
42
42
|
"lognow": "^0.2.2"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@kitschpatrol/shared-config": "^5.
|
|
46
|
-
"bumpp": "^10.
|
|
47
|
-
"tsdown": "^0.
|
|
45
|
+
"@kitschpatrol/shared-config": "^5.12.0",
|
|
46
|
+
"bumpp": "^10.4.0",
|
|
47
|
+
"tsdown": "^0.19.0",
|
|
48
48
|
"typescript": "~5.9.3"
|
|
49
49
|
},
|
|
50
|
-
"packageManager": "pnpm@10.
|
|
50
|
+
"packageManager": "pnpm@10.28.1",
|
|
51
51
|
"engines": {
|
|
52
52
|
"node": ">=20.19.0"
|
|
53
53
|
}
|
|
@@ -17,7 +17,9 @@
|
|
|
17
17
|
"cSpell.enabled": true,
|
|
18
18
|
"cSpell.workspaceRootPath": ".",
|
|
19
19
|
"editor.codeActionsOnSave": {
|
|
20
|
-
"source.fixAll": "explicit",
|
|
20
|
+
"source.fixAll.ts": "explicit",
|
|
21
|
+
"source.fixAll.eslint": "explicit",
|
|
22
|
+
"source.fixAll.stylelint": "explicit",
|
|
21
23
|
"source.organizeImports": "never"
|
|
22
24
|
},
|
|
23
25
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
@@ -48,7 +50,7 @@
|
|
|
48
50
|
".env": ".env.*, .template.env",
|
|
49
51
|
"*.js": "${basename}.ts.map, ${basename}.js.map, ${basename}.d.ts, ${basename}.d.ts.map, ${basename}.d.js.map",
|
|
50
52
|
"*.ts": "${basename}.ts.map, ${basename}.d.ts, ${basename}.d.ts.map",
|
|
51
|
-
"package.json": "
|
|
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*",
|
|
52
54
|
"readme.md": "authors*, backers*, changelog*, citation*, code_of_conduct*, contributing*, contributors*, copying*, credits*, governance*, history*, license*, maintainers*, release_notes*, security*, sponsors*"
|
|
53
55
|
},
|
|
54
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.30"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@kitschpatrol/shared-config": "^5.
|
|
36
|
-
"bumpp": "^10.
|
|
35
|
+
"@kitschpatrol/shared-config": "^5.12.0",
|
|
36
|
+
"bumpp": "^10.4.0",
|
|
37
37
|
"tsx": "^4.21.0",
|
|
38
38
|
"typescript": "~5.9.3"
|
|
39
39
|
},
|
|
40
|
-
"packageManager": "pnpm@10.
|
|
40
|
+
"packageManager": "pnpm@10.28.1",
|
|
41
41
|
"engines": {
|
|
42
42
|
"node": ">=20.19.0"
|
|
43
43
|
}
|
|
@@ -17,7 +17,9 @@
|
|
|
17
17
|
"cSpell.enabled": true,
|
|
18
18
|
"cSpell.workspaceRootPath": ".",
|
|
19
19
|
"editor.codeActionsOnSave": {
|
|
20
|
-
"source.fixAll": "explicit",
|
|
20
|
+
"source.fixAll.ts": "explicit",
|
|
21
|
+
"source.fixAll.eslint": "explicit",
|
|
22
|
+
"source.fixAll.stylelint": "explicit",
|
|
21
23
|
"source.organizeImports": "never"
|
|
22
24
|
},
|
|
23
25
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
@@ -48,7 +50,7 @@
|
|
|
48
50
|
".env": ".env.*, .template.env",
|
|
49
51
|
"*.js": "${basename}.ts.map, ${basename}.js.map, ${basename}.d.ts, ${basename}.d.ts.map, ${basename}.d.js.map",
|
|
50
52
|
"*.ts": "${basename}.ts.map, ${basename}.d.ts, ${basename}.d.ts.map",
|
|
51
|
-
"package.json": "
|
|
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*",
|
|
52
54
|
"readme.md": "authors*, backers*, changelog*, citation*, code_of_conduct*, contributing*, contributors*, copying*, credits*, governance*, history*, license*, maintainers*, release_notes*, security*, sponsors*"
|
|
53
55
|
},
|
|
54
56
|
"prettier.documentSelectors": [
|
|
@@ -68,14 +68,14 @@
|
|
|
68
68
|
"unplugin-utils": "^0.3.1"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
|
-
"@kitschpatrol/shared-config": "^5.
|
|
71
|
+
"@kitschpatrol/shared-config": "^5.12.0",
|
|
72
72
|
"@sxzz/test-utils": "^0.5.15",
|
|
73
|
-
"bumpp": "^10.
|
|
74
|
-
"tsdown": "^0.
|
|
73
|
+
"bumpp": "^10.4.0",
|
|
74
|
+
"tsdown": "^0.19.0",
|
|
75
75
|
"typescript": "~5.9.3",
|
|
76
|
-
"vitest": "^4.0.
|
|
76
|
+
"vitest": "^4.0.17"
|
|
77
77
|
},
|
|
78
|
-
"packageManager": "pnpm@10.
|
|
78
|
+
"packageManager": "pnpm@10.28.1",
|
|
79
79
|
"engines": {
|
|
80
80
|
"node": ">=22.16.0"
|
|
81
81
|
}
|
|
@@ -17,7 +17,9 @@
|
|
|
17
17
|
"cSpell.enabled": true,
|
|
18
18
|
"cSpell.workspaceRootPath": ".",
|
|
19
19
|
"editor.codeActionsOnSave": {
|
|
20
|
-
"source.fixAll": "explicit",
|
|
20
|
+
"source.fixAll.ts": "explicit",
|
|
21
|
+
"source.fixAll.eslint": "explicit",
|
|
22
|
+
"source.fixAll.stylelint": "explicit",
|
|
21
23
|
"source.organizeImports": "never"
|
|
22
24
|
},
|
|
23
25
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
@@ -48,7 +50,7 @@
|
|
|
48
50
|
".env": ".env.*, .template.env",
|
|
49
51
|
"*.js": "${basename}.ts.map, ${basename}.js.map, ${basename}.d.ts, ${basename}.d.ts.map, ${basename}.d.js.map",
|
|
50
52
|
"*.ts": "${basename}.ts.map, ${basename}.d.ts, ${basename}.d.ts.map",
|
|
51
|
-
"package.json": "
|
|
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*",
|
|
52
54
|
"readme.md": "authors*, backers*, changelog*, citation*, code_of_conduct*, contributing*, contributors*, copying*, credits*, governance*, history*, license*, maintainers*, release_notes*, security*, sponsors*"
|
|
53
55
|
},
|
|
54
56
|
"prettier.documentSelectors": [
|
|
@@ -30,23 +30,18 @@
|
|
|
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.30"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@kitschpatrol/shared-config": "^5.
|
|
37
|
-
"bumpp": "^10.
|
|
36
|
+
"@kitschpatrol/shared-config": "^5.12.0",
|
|
37
|
+
"bumpp": "^10.4.0",
|
|
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.28.1",
|
|
44
44
|
"engines": {
|
|
45
45
|
"node": ">=20.19.0"
|
|
46
|
-
},
|
|
47
|
-
"pnpm": {
|
|
48
|
-
"overrides": {
|
|
49
|
-
"vite": "npm:rolldown-vite@7.1.17"
|
|
50
|
-
}
|
|
51
46
|
}
|
|
52
47
|
}
|