@kitschpatrol/create-project 1.0.4 → 1.1.1
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 +15 -10
- package/package.json +9 -7
- package/readme.md +6 -0
- package/templates/cli/.npmrc +3 -0
- package/templates/cli/.vscode/settings.json +2 -2
- package/templates/cli/mdat.config.ts +6 -1
- package/templates/cli/package.json +8 -6
- package/templates/cli/pnpm-lock.yaml +1512 -0
- package/templates/cli/src/index.ts +8 -0
- package/templates/cli+library/.npmrc +3 -0
- package/templates/cli+library/.vscode/settings.json +2 -2
- package/templates/cli+library/mdat.config.ts +6 -1
- package/templates/cli+library/package.json +10 -8
- package/templates/cli+library/src/bin/cli.ts +11 -3
- package/templates/cli+library/src/lib/index.ts +6 -0
- package/templates/cli+library/src/lib/log.ts +16 -0
- package/templates/cli+library/tsconfig.build.json +0 -3
- package/templates/electron/.github/workflows/github-release.yml +81 -0
- package/templates/electron/.github/workflows/set-github-metadata.yml +21 -0
- package/templates/{cli+library/node_modules/.pnpm/@kitschpatrol+repo-config@5.7.4_@types+node@20.19.21_typescript@5.9.3/node_modules/@kitschpatrol/repo-config/init → electron}/.gitignore +2 -0
- package/templates/{web/node_modules/.pnpm/@kitschpatrol+repo-config@5.7.4_@types+node@20.19.21_typescript@5.9.3/node_modules/@kitschpatrol/repo-config/init → electron}/.npmrc +3 -0
- package/templates/electron/.prettierignore +8 -0
- package/templates/electron/.remarkrc.js +8 -0
- package/templates/electron/.vscode/extensions.json +9 -0
- package/templates/electron/.vscode/settings.json +68 -0
- package/templates/electron/cspell.config.js +5 -0
- package/templates/electron/electron/electron-env.d.ts +29 -0
- package/templates/electron/electron/main.ts +50 -0
- package/templates/electron/electron/preload.ts +130 -0
- package/templates/electron/electron/resources/icons/mac/icon.icns +0 -0
- package/templates/electron/electron/resources/icons/png/1024x1024.png +0 -0
- package/templates/electron/electron/resources/icons/win/icon.ico +0 -0
- package/templates/electron/electron/resources/mac/entitlements.mac.plist +11 -0
- package/templates/electron/electron-builder.ts +40 -0
- package/templates/electron/eslint.config.ts +22 -0
- package/templates/electron/index.html +13 -0
- package/templates/electron/knip.config.ts +3 -0
- package/templates/electron/license.txt +21 -0
- package/templates/electron/mdat.config.ts +3 -0
- package/templates/electron/package.json +61 -0
- package/templates/electron/pnpm-workspace.yaml +3 -0
- package/templates/electron/prettier.config.js +3 -0
- package/templates/electron/public/vite.svg +35 -0
- package/templates/electron/readme.md +29 -0
- package/templates/electron/src/counter.ts +15 -0
- package/templates/electron/src/main.ts +27 -0
- package/templates/electron/src/style.css +102 -0
- package/templates/electron/src/typescript.svg +14 -0
- package/templates/electron/stylelint.config.js +3 -0
- package/templates/electron/tsconfig.json +9 -0
- package/templates/electron/vite.config.ts +15 -0
- package/templates/library/.npmrc +3 -0
- package/templates/library/.vscode/settings.json +2 -2
- package/templates/library/package.json +10 -9
- package/templates/library/pnpm-workspace.yaml +0 -1
- package/templates/library/src/index.ts +6 -0
- package/templates/library/src/log.ts +16 -0
- package/templates/library/tsconfig.build.json +0 -3
- package/templates/minimal/.npmrc +3 -0
- package/templates/minimal/.vscode/settings.json +2 -2
- package/templates/minimal/package.json +3 -3
- package/templates/minimal/pnpm-workspace.yaml +0 -1
- package/templates/minimal/tsconfig.build.json +0 -3
- package/templates/web/.npmrc +3 -0
- package/templates/web/.vscode/settings.json +2 -2
- package/templates/web/package.json +4 -4
- package/templates/web/pnpm-workspace.yaml +0 -1
- package/templates/cli+library/node_modules/.pnpm/@kitschpatrol+repo-config@5.7.4_@types+node@20.19.21_typescript@5.9.3/node_modules/@kitschpatrol/repo-config/init/.npmrc +0 -13
- package/templates/cli+library/node_modules/.pnpm/@kitschpatrol+shared-config@5.7.4_@types+estree@1.0.8_@types+node@20.19.21_@typescript-_2447bd682c28a4894c15b76c356f369c/node_modules/@kitschpatrol/repo-config/init/.npmrc +0 -13
- package/templates/cli+library/node_modules/@kitschpatrol/repo-config/init/.npmrc +0 -13
- package/templates/cli+library/pnpm-lock.yaml +0 -10094
- package/templates/web/node_modules/.pnpm/@kitschpatrol+repo-config@5.7.4_@types+node@20.19.21_typescript@5.9.3/node_modules/@kitschpatrol/repo-config/init/.gitignore +0 -22
- package/templates/web/node_modules/.pnpm/@kitschpatrol+shared-config@5.7.4_@types+estree@1.0.8_@types+node@20.19.21_@typescript-_2447bd682c28a4894c15b76c356f369c/node_modules/@kitschpatrol/repo-config/init/.npmrc +0 -13
- package/templates/web/node_modules/@kitschpatrol/repo-config/init/.npmrc +0 -13
- package/templates/web/pnpm-lock.yaml +0 -10213
|
@@ -30,23 +30,23 @@
|
|
|
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.24"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@kitschpatrol/shared-config": "^5.
|
|
36
|
+
"@kitschpatrol/shared-config": "^5.8.0",
|
|
37
37
|
"bumpp": "^10.3.1",
|
|
38
38
|
"poptab": "^1.0.1",
|
|
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.20.0",
|
|
44
44
|
"engines": {
|
|
45
45
|
"node": ">=20.19.0"
|
|
46
46
|
},
|
|
47
47
|
"pnpm": {
|
|
48
48
|
"overrides": {
|
|
49
|
-
"vite": "npm:rolldown-vite@7.1.
|
|
49
|
+
"vite": "npm:rolldown-vite@7.1.17"
|
|
50
50
|
}
|
|
51
51
|
}
|
|
52
52
|
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
publish-branch=main
|
|
2
|
-
|
|
3
|
-
# Required for using @kitschpatrol/shared-config and the ksc command with pnpm
|
|
4
|
-
public-hoist-pattern[]=@kitschpatrol/repo-config
|
|
5
|
-
public-hoist-pattern[]=@kitschpatrol/typescript-config
|
|
6
|
-
public-hoist-pattern[]=case-police
|
|
7
|
-
public-hoist-pattern[]=*cspell*
|
|
8
|
-
public-hoist-pattern[]=*eslint*
|
|
9
|
-
public-hoist-pattern[]=*knip*
|
|
10
|
-
public-hoist-pattern[]=*mdat*
|
|
11
|
-
public-hoist-pattern[]=*prettier*
|
|
12
|
-
public-hoist-pattern[]=*remark*
|
|
13
|
-
public-hoist-pattern[]=*stylelint*
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
publish-branch=main
|
|
2
|
-
|
|
3
|
-
# Required for using @kitschpatrol/shared-config and the ksc command with pnpm
|
|
4
|
-
public-hoist-pattern[]=@kitschpatrol/repo-config
|
|
5
|
-
public-hoist-pattern[]=@kitschpatrol/typescript-config
|
|
6
|
-
public-hoist-pattern[]=case-police
|
|
7
|
-
public-hoist-pattern[]=*cspell*
|
|
8
|
-
public-hoist-pattern[]=*eslint*
|
|
9
|
-
public-hoist-pattern[]=*knip*
|
|
10
|
-
public-hoist-pattern[]=*mdat*
|
|
11
|
-
public-hoist-pattern[]=*prettier*
|
|
12
|
-
public-hoist-pattern[]=*remark*
|
|
13
|
-
public-hoist-pattern[]=*stylelint*
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
publish-branch=main
|
|
2
|
-
|
|
3
|
-
# Required for using @kitschpatrol/shared-config and the ksc command with pnpm
|
|
4
|
-
public-hoist-pattern[]=@kitschpatrol/repo-config
|
|
5
|
-
public-hoist-pattern[]=@kitschpatrol/typescript-config
|
|
6
|
-
public-hoist-pattern[]=case-police
|
|
7
|
-
public-hoist-pattern[]=*cspell*
|
|
8
|
-
public-hoist-pattern[]=*eslint*
|
|
9
|
-
public-hoist-pattern[]=*knip*
|
|
10
|
-
public-hoist-pattern[]=*mdat*
|
|
11
|
-
public-hoist-pattern[]=*prettier*
|
|
12
|
-
public-hoist-pattern[]=*remark*
|
|
13
|
-
public-hoist-pattern[]=*stylelint*
|