complete-cli 1.5.15 → 1.5.16

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.
@@ -126,6 +126,9 @@ dist
126
126
  # Stores VSCode versions used for testing VSCode extensions
127
127
  .vscode-test
128
128
 
129
+ # pnpm
130
+ .pnpm-store
131
+
129
132
  # yarn v3
130
133
  .pnp.*
131
134
  .yarn/*
@@ -21,6 +21,11 @@
21
21
  // Automatically remove all trailing whitespace when saving a file.
22
22
  "files.trimTrailingWhitespace": true,
23
23
 
24
+ // Allow custom schemas hosted on GitHub.
25
+ "json.schemaDownload.trustedDomains": {
26
+ "https://raw.githubusercontent.com/": true,
27
+ },
28
+
24
29
  // Configure glob patterns for excluding files and folders in full text searches and quick open.
25
30
  "search.exclude": {
26
31
  "**/*.mp3": true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "complete-cli",
3
- "version": "1.5.15",
3
+ "version": "1.5.16",
4
4
  "description": "A command line tool for bootstrapping TypeScript projects.",
5
5
  "keywords": [
6
6
  "typescript"
@@ -31,10 +31,10 @@
31
31
  "test": "bun test"
32
32
  },
33
33
  "dependencies": {
34
- "@clack/prompts": "0.11.0",
34
+ "@clack/prompts": "1.0.1",
35
35
  "chalk": "5.6.2",
36
36
  "clipanion": "4.0.0-rc.4",
37
- "complete-common": "2.14.0",
37
+ "complete-common": "2.19.1",
38
38
  "complete-node": "16.2.0",
39
39
  "klaw-sync": "7.0.0",
40
40
  "source-map-support": "0.5.21",
@@ -42,13 +42,13 @@
42
42
  },
43
43
  "devDependencies": {
44
44
  "@types/klaw-sync": "6.0.5",
45
- "@types/node": "25.0.9",
45
+ "@types/node": "25.3.2",
46
46
  "@types/source-map-support": "0.5.10",
47
47
  "ts-loader": "9.5.4",
48
48
  "tsconfig-paths-webpack-plugin": "4.2.0",
49
49
  "typescript": "5.9.3",
50
- "typescript-eslint": "8.53.0",
51
- "webpack": "5.104.1",
50
+ "typescript-eslint": "8.56.1",
51
+ "webpack": "5.105.3",
52
52
  "webpack-cli": "6.0.1",
53
53
  "webpack-shebang-plugin": "1.1.8"
54
54
  },