claude-cli-advanced-starter-pack 1.0.3 → 1.0.4
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 +1 -1
- package/src/commands/init.js +8 -13
package/package.json
CHANGED
package/src/commands/init.js
CHANGED
|
@@ -1227,17 +1227,12 @@ export default async function ${hookName.replace(/-/g, '_')}(context) {
|
|
|
1227
1227
|
*/
|
|
1228
1228
|
function generateSettingsJson(projectName) {
|
|
1229
1229
|
return JSON.stringify({
|
|
1230
|
-
"$schema": "https://
|
|
1231
|
-
"project": {
|
|
1232
|
-
"name": projectName,
|
|
1233
|
-
"description": "Project configured with Claude CLI Advanced Starter Pack"
|
|
1234
|
-
},
|
|
1230
|
+
"$schema": "https://json.schemastore.org/claude-code-settings.json",
|
|
1235
1231
|
"permissions": {
|
|
1236
|
-
"
|
|
1237
|
-
"
|
|
1232
|
+
"allow": [],
|
|
1233
|
+
"deny": []
|
|
1238
1234
|
},
|
|
1239
|
-
"
|
|
1240
|
-
"hooks": []
|
|
1235
|
+
"hooks": {}
|
|
1241
1236
|
}, null, 2);
|
|
1242
1237
|
}
|
|
1243
1238
|
|
|
@@ -1246,12 +1241,12 @@ function generateSettingsJson(projectName) {
|
|
|
1246
1241
|
*/
|
|
1247
1242
|
function generateSettingsLocalJson() {
|
|
1248
1243
|
return JSON.stringify({
|
|
1249
|
-
"$schema": "https://
|
|
1244
|
+
"$schema": "https://json.schemastore.org/claude-code-settings.json",
|
|
1250
1245
|
"permissions": {
|
|
1251
|
-
"
|
|
1252
|
-
"
|
|
1246
|
+
"allow": [],
|
|
1247
|
+
"deny": []
|
|
1253
1248
|
},
|
|
1254
|
-
"hooks":
|
|
1249
|
+
"hooks": {}
|
|
1255
1250
|
}, null, 2);
|
|
1256
1251
|
}
|
|
1257
1252
|
|