vesper-wizard 1.0.0 → 1.0.2

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vesper-wizard",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Interactive setup wizard for Vesper projects",
5
5
  "bin": {
6
6
  "vesper-wizard": "wizard.js"
@@ -0,0 +1,8 @@
1
+ {
2
+ "project": "vesper",
3
+ "dataDir": "./datasets",
4
+ "exportFormat": "parquet",
5
+ "tokens": {
6
+ "kaggle": "KGAT_1cf06098e5f1d0fbc8f2a2b9efad1632"
7
+ }
8
+ }
package/wizard.js CHANGED
@@ -6,7 +6,7 @@ const fs = require('fs');
6
6
  const path = require('path');
7
7
 
8
8
  async function main() {
9
- console.log('\nšŸ§™ Welcome to the Vesper Wizard!\n');
9
+ console.log('\nWelcome to the Vesper Wizard!\n');
10
10
 
11
11
  // Step 1: Project basics
12
12
  const { projectName } = await inquirer.prompt([
@@ -70,8 +70,8 @@ async function main() {
70
70
  };
71
71
  const configPath = path.join(process.cwd(), 'vesper-mcp-config.json');
72
72
  fs.writeFileSync(configPath, JSON.stringify(config, null, 2));
73
- console.log(`\nāœ… Configuration saved to ${configPath}`);
74
- console.log('\nšŸŽ‰ Vesper is ready to use!\n');
73
+ console.log(`\nConfiguration saved to ${configPath}`);
74
+ console.log('\nVesper is ready to use!\n');
75
75
  }
76
76
 
77
77
  main();