@kitschpatrol/create-project 1.2.5 → 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.
- package/package.json +4 -3
- package/templates/cli/.github/workflows/github-release.yml +1 -1
- package/templates/cli/.github/workflows/set-github-metadata.yml +2 -2
- package/templates/cli/.npmrc +0 -2
- package/templates/cli/package.json +4 -3
- package/templates/cli+library/.github/workflows/github-release.yml +1 -1
- package/templates/cli+library/.github/workflows/set-github-metadata.yml +2 -2
- package/templates/cli+library/.npmrc +0 -2
- package/templates/cli+library/package.json +4 -3
- package/templates/electron/.github/workflows/github-release.yml +1 -1
- package/templates/electron/.github/workflows/set-github-metadata.yml +2 -2
- package/templates/electron/.npmrc +0 -2
- package/templates/electron/package.json +5 -4
- package/templates/library/.github/workflows/github-release.yml +1 -1
- package/templates/library/.github/workflows/set-github-metadata.yml +2 -2
- package/templates/library/.npmrc +0 -2
- package/templates/library/package.json +4 -3
- package/templates/minimal/.github/workflows/github-release.yml +1 -1
- package/templates/minimal/.github/workflows/set-github-metadata.yml +2 -2
- package/templates/minimal/.npmrc +0 -2
- package/templates/minimal/package.json +4 -3
- package/templates/unplugin/.github/workflows/github-release.yml +1 -1
- package/templates/unplugin/.github/workflows/set-github-metadata.yml +2 -2
- package/templates/unplugin/.npmrc +0 -2
- package/templates/unplugin/package.json +3 -2
- package/templates/web/.github/workflows/github-release.yml +1 -1
- package/templates/web/.github/workflows/set-github-metadata.yml +2 -2
- package/templates/web/.npmrc +0 -2
- package/templates/web/package.json +5 -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.6",
|
|
4
4
|
"description": "Kitschpatrol's TypeScript project templates.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"email": "eric@ericmika.com",
|
|
20
20
|
"url": "https://ericmika.com"
|
|
21
21
|
},
|
|
22
|
+
"sideEffects": false,
|
|
22
23
|
"type": "module",
|
|
23
24
|
"bin": "dist/index.js",
|
|
24
25
|
"files": [
|
|
@@ -34,8 +35,8 @@
|
|
|
34
35
|
"zod": "^3.25.76"
|
|
35
36
|
},
|
|
36
37
|
"devDependencies": {
|
|
37
|
-
"@kitschpatrol/shared-config": "^6.0.
|
|
38
|
-
"@types/node": "~20.19.
|
|
38
|
+
"@kitschpatrol/shared-config": "^6.0.1",
|
|
39
|
+
"@types/node": "~20.19.35",
|
|
39
40
|
"bumpp": "^10.4.1",
|
|
40
41
|
"mdat": "^1.3.5",
|
|
41
42
|
"taze": "^19.9.2",
|
|
@@ -11,11 +11,11 @@ jobs:
|
|
|
11
11
|
|
|
12
12
|
steps:
|
|
13
13
|
- name: Checkout
|
|
14
|
-
uses: actions/checkout@
|
|
14
|
+
uses: actions/checkout@v6
|
|
15
15
|
with:
|
|
16
16
|
fetch-depth: 0
|
|
17
17
|
|
|
18
18
|
- name: Sync Package info to GitHub
|
|
19
|
-
uses: kitschpatrol/github-action-repo-sync@
|
|
19
|
+
uses: kitschpatrol/github-action-repo-sync@v4
|
|
20
20
|
with:
|
|
21
21
|
TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
|
package/templates/cli/.npmrc
CHANGED
|
@@ -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
|
"bin": {
|
|
23
24
|
"{{{cli-command-name}}}": "dist/index.js"
|
|
@@ -34,19 +35,19 @@
|
|
|
34
35
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
35
36
|
},
|
|
36
37
|
"dependencies": {
|
|
37
|
-
"@types/node": "~20.19.
|
|
38
|
+
"@types/node": "~20.19.35",
|
|
38
39
|
"@types/yargs": "^17.0.35",
|
|
39
40
|
"lognow": "^0.4.1",
|
|
40
41
|
"yargs": "^18.0.0"
|
|
41
42
|
},
|
|
42
43
|
"devDependencies": {
|
|
43
|
-
"@kitschpatrol/shared-config": "^6.0.
|
|
44
|
+
"@kitschpatrol/shared-config": "^6.0.1",
|
|
44
45
|
"bumpp": "^10.4.1",
|
|
45
46
|
"mdat-plugin-cli-help": "^1.0.7",
|
|
46
47
|
"tsdown": "^0.20.3",
|
|
47
48
|
"typescript": "~5.9.3"
|
|
48
49
|
},
|
|
49
|
-
"packageManager": "pnpm@10.30.
|
|
50
|
+
"packageManager": "pnpm@10.30.3",
|
|
50
51
|
"engines": {
|
|
51
52
|
"node": ">=20.19.0"
|
|
52
53
|
}
|
|
@@ -11,11 +11,11 @@ jobs:
|
|
|
11
11
|
|
|
12
12
|
steps:
|
|
13
13
|
- name: Checkout
|
|
14
|
-
uses: actions/checkout@
|
|
14
|
+
uses: actions/checkout@v6
|
|
15
15
|
with:
|
|
16
16
|
fetch-depth: 0
|
|
17
17
|
|
|
18
18
|
- name: Sync Package info to GitHub
|
|
19
|
-
uses: kitschpatrol/github-action-repo-sync@
|
|
19
|
+
uses: kitschpatrol/github-action-repo-sync@v4
|
|
20
20
|
with:
|
|
21
21
|
TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
|
|
@@ -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
|
"exports": {
|
|
23
24
|
".": {
|
|
@@ -43,21 +44,21 @@
|
|
|
43
44
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
44
45
|
},
|
|
45
46
|
"dependencies": {
|
|
46
|
-
"@types/node": "~20.19.
|
|
47
|
+
"@types/node": "~20.19.35",
|
|
47
48
|
"@types/yargs": "^17.0.35",
|
|
48
49
|
"lognow": "^0.4.1",
|
|
49
50
|
"yargs": "^18.0.0"
|
|
50
51
|
},
|
|
51
52
|
"devDependencies": {
|
|
52
53
|
"@arethetypeswrong/core": "^0.18.2",
|
|
53
|
-
"@kitschpatrol/shared-config": "^6.0.
|
|
54
|
+
"@kitschpatrol/shared-config": "^6.0.1",
|
|
54
55
|
"bumpp": "^10.4.1",
|
|
55
56
|
"mdat-plugin-cli-help": "^1.0.7",
|
|
56
57
|
"publint": "^0.3.17",
|
|
57
58
|
"tsdown": "^0.20.3",
|
|
58
59
|
"typescript": "~5.9.3"
|
|
59
60
|
},
|
|
60
|
-
"packageManager": "pnpm@10.30.
|
|
61
|
+
"packageManager": "pnpm@10.30.3",
|
|
61
62
|
"engines": {
|
|
62
63
|
"node": ">=20.19.0"
|
|
63
64
|
}
|
|
@@ -11,11 +11,11 @@ jobs:
|
|
|
11
11
|
|
|
12
12
|
steps:
|
|
13
13
|
- name: Checkout
|
|
14
|
-
uses: actions/checkout@
|
|
14
|
+
uses: actions/checkout@v6
|
|
15
15
|
with:
|
|
16
16
|
fetch-depth: 0
|
|
17
17
|
|
|
18
18
|
- name: Sync Package info to GitHub
|
|
19
|
-
uses: kitschpatrol/github-action-repo-sync@
|
|
19
|
+
uses: kitschpatrol/github-action-repo-sync@v4
|
|
20
20
|
with:
|
|
21
21
|
TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
|
|
@@ -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
|
"main": "dist-electron/main.js",
|
|
23
24
|
"scripts": {
|
|
@@ -30,19 +31,19 @@
|
|
|
30
31
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
31
32
|
},
|
|
32
33
|
"dependencies": {
|
|
33
|
-
"@types/node": "~22.19.
|
|
34
|
+
"@types/node": "~22.19.13",
|
|
34
35
|
"lognow": "^0.4.1"
|
|
35
36
|
},
|
|
36
37
|
"devDependencies": {
|
|
37
|
-
"@kitschpatrol/shared-config": "^6.0.
|
|
38
|
+
"@kitschpatrol/shared-config": "^6.0.1",
|
|
38
39
|
"bumpp": "^10.4.1",
|
|
39
|
-
"electron": "^40.6.
|
|
40
|
+
"electron": "^40.6.1",
|
|
40
41
|
"electron-builder": "^26.8.1",
|
|
41
42
|
"typescript": "~5.9.3",
|
|
42
43
|
"vite": "npm:rolldown-vite@7.3.1",
|
|
43
44
|
"vite-plugin-electron": "^0.29.0"
|
|
44
45
|
},
|
|
45
|
-
"packageManager": "pnpm@10.30.
|
|
46
|
+
"packageManager": "pnpm@10.30.3",
|
|
46
47
|
"engines": {
|
|
47
48
|
"node": ">=22.18.0"
|
|
48
49
|
}
|
|
@@ -11,11 +11,11 @@ jobs:
|
|
|
11
11
|
|
|
12
12
|
steps:
|
|
13
13
|
- name: Checkout
|
|
14
|
-
uses: actions/checkout@
|
|
14
|
+
uses: actions/checkout@v6
|
|
15
15
|
with:
|
|
16
16
|
fetch-depth: 0
|
|
17
17
|
|
|
18
18
|
- name: Sync Package info to GitHub
|
|
19
|
-
uses: kitschpatrol/github-action-repo-sync@
|
|
19
|
+
uses: kitschpatrol/github-action-repo-sync@v4
|
|
20
20
|
with:
|
|
21
21
|
TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
|
package/templates/library/.npmrc
CHANGED
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"email": "{{{author-email}}}",
|
|
18
18
|
"url": "{{{author-url}}}"
|
|
19
19
|
},
|
|
20
|
+
"sideEffects": false,
|
|
20
21
|
"type": "module",
|
|
21
22
|
"exports": {
|
|
22
23
|
".": {
|
|
@@ -38,18 +39,18 @@
|
|
|
38
39
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
39
40
|
},
|
|
40
41
|
"dependencies": {
|
|
41
|
-
"@types/node": "~20.19.
|
|
42
|
+
"@types/node": "~20.19.35",
|
|
42
43
|
"lognow": "^0.4.1"
|
|
43
44
|
},
|
|
44
45
|
"devDependencies": {
|
|
45
46
|
"@arethetypeswrong/core": "^0.18.2",
|
|
46
|
-
"@kitschpatrol/shared-config": "^6.0.
|
|
47
|
+
"@kitschpatrol/shared-config": "^6.0.1",
|
|
47
48
|
"bumpp": "^10.4.1",
|
|
48
49
|
"publint": "^0.3.17",
|
|
49
50
|
"tsdown": "^0.20.3",
|
|
50
51
|
"typescript": "~5.9.3"
|
|
51
52
|
},
|
|
52
|
-
"packageManager": "pnpm@10.30.
|
|
53
|
+
"packageManager": "pnpm@10.30.3",
|
|
53
54
|
"engines": {
|
|
54
55
|
"node": ">=20.19.0"
|
|
55
56
|
}
|
|
@@ -11,11 +11,11 @@ jobs:
|
|
|
11
11
|
|
|
12
12
|
steps:
|
|
13
13
|
- name: Checkout
|
|
14
|
-
uses: actions/checkout@
|
|
14
|
+
uses: actions/checkout@v6
|
|
15
15
|
with:
|
|
16
16
|
fetch-depth: 0
|
|
17
17
|
|
|
18
18
|
- name: Sync Package info to GitHub
|
|
19
|
-
uses: kitschpatrol/github-action-repo-sync@
|
|
19
|
+
uses: kitschpatrol/github-action-repo-sync@v4
|
|
20
20
|
with:
|
|
21
21
|
TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
|
package/templates/minimal/.npmrc
CHANGED
|
@@ -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": "tsx script.ts",
|
|
@@ -29,15 +30,15 @@
|
|
|
29
30
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
30
31
|
},
|
|
31
32
|
"dependencies": {
|
|
32
|
-
"@types/node": "~20.19.
|
|
33
|
+
"@types/node": "~20.19.35"
|
|
33
34
|
},
|
|
34
35
|
"devDependencies": {
|
|
35
|
-
"@kitschpatrol/shared-config": "^6.0.
|
|
36
|
+
"@kitschpatrol/shared-config": "^6.0.1",
|
|
36
37
|
"bumpp": "^10.4.1",
|
|
37
38
|
"tsx": "^4.21.0",
|
|
38
39
|
"typescript": "~5.9.3"
|
|
39
40
|
},
|
|
40
|
-
"packageManager": "pnpm@10.30.
|
|
41
|
+
"packageManager": "pnpm@10.30.3",
|
|
41
42
|
"engines": {
|
|
42
43
|
"node": ">=20.19.0"
|
|
43
44
|
}
|
|
@@ -11,11 +11,11 @@ jobs:
|
|
|
11
11
|
|
|
12
12
|
steps:
|
|
13
13
|
- name: Checkout
|
|
14
|
-
uses: actions/checkout@
|
|
14
|
+
uses: actions/checkout@v6
|
|
15
15
|
with:
|
|
16
16
|
fetch-depth: 0
|
|
17
17
|
|
|
18
18
|
- name: Sync Package info to GitHub
|
|
19
|
-
uses: kitschpatrol/github-action-repo-sync@
|
|
19
|
+
uses: kitschpatrol/github-action-repo-sync@v4
|
|
20
20
|
with:
|
|
21
21
|
TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
|
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
"email": "{{{author-email}}}",
|
|
27
27
|
"url": "{{{author-url}}}"
|
|
28
28
|
},
|
|
29
|
+
"sideEffects": false,
|
|
29
30
|
"type": "module",
|
|
30
31
|
"exports": {
|
|
31
32
|
".": "./dist/index.js",
|
|
@@ -68,14 +69,14 @@
|
|
|
68
69
|
"unplugin-utils": "^0.3.1"
|
|
69
70
|
},
|
|
70
71
|
"devDependencies": {
|
|
71
|
-
"@kitschpatrol/shared-config": "^6.0.
|
|
72
|
+
"@kitschpatrol/shared-config": "^6.0.1",
|
|
72
73
|
"@sxzz/test-utils": "^0.5.15",
|
|
73
74
|
"bumpp": "^10.4.1",
|
|
74
75
|
"tsdown": "^0.20.3",
|
|
75
76
|
"typescript": "~5.9.3",
|
|
76
77
|
"vitest": "^4.0.18"
|
|
77
78
|
},
|
|
78
|
-
"packageManager": "pnpm@10.30.
|
|
79
|
+
"packageManager": "pnpm@10.30.3",
|
|
79
80
|
"engines": {
|
|
80
81
|
"node": ">=22.16.0"
|
|
81
82
|
}
|
|
@@ -11,11 +11,11 @@ jobs:
|
|
|
11
11
|
|
|
12
12
|
steps:
|
|
13
13
|
- name: Checkout
|
|
14
|
-
uses: actions/checkout@
|
|
14
|
+
uses: actions/checkout@v6
|
|
15
15
|
with:
|
|
16
16
|
fetch-depth: 0
|
|
17
17
|
|
|
18
18
|
- name: Sync Package info to GitHub
|
|
19
|
-
uses: kitschpatrol/github-action-repo-sync@
|
|
19
|
+
uses: kitschpatrol/github-action-repo-sync@v4
|
|
20
20
|
with:
|
|
21
21
|
TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
|
package/templates/web/.npmrc
CHANGED
|
@@ -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.
|
|
34
|
+
"@types/node": "~20.19.35"
|
|
34
35
|
},
|
|
35
36
|
"devDependencies": {
|
|
36
|
-
"@kitschpatrol/shared-config": "^6.0.
|
|
37
|
+
"@kitschpatrol/shared-config": "^6.0.1",
|
|
37
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.
|
|
42
|
+
"vite-plugin-mkcert": "^1.17.10"
|
|
42
43
|
},
|
|
43
|
-
"packageManager": "pnpm@10.30.
|
|
44
|
+
"packageManager": "pnpm@10.30.3",
|
|
44
45
|
"engines": {
|
|
45
46
|
"node": ">=20.19.0"
|
|
46
47
|
}
|