@enfyra/create-app 0.1.37 → 0.1.38
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/README.md +11 -11
- package/components/project-setup.js +18 -29
- package/index.js +106 -21
- package/package-lock.json +772 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -15,6 +15,8 @@ npx @enfyra/create-server my-backend
|
|
|
15
15
|
|
|
16
16
|
👉 **[Backend Setup Guide](https://www.npmjs.com/package/@enfyra/create-server)** - Complete instructions for setting up your Enfyra backend
|
|
17
17
|
|
|
18
|
+
The frontend does not own backend secrets. For self-hosted backends, keep the server `SECRET_KEY` stable and backed up because it signs auth tokens and decrypts fields marked `isEncrypted=true`.
|
|
19
|
+
|
|
18
20
|
## Quick Start
|
|
19
21
|
|
|
20
22
|
```bash
|
|
@@ -102,25 +104,23 @@ npm run preview # Preview production build
|
|
|
102
104
|
|
|
103
105
|
### Learn More
|
|
104
106
|
|
|
105
|
-
📖 **[Complete Documentation](https://github.com/
|
|
106
|
-
🔧 **[
|
|
107
|
-
🎨 **[
|
|
108
|
-
⚡ **[Best Practices](https://github.com/dothinh115/enfyra-app/blob/main/docs/BEST_PRACTICES.md)** - Development guidelines
|
|
107
|
+
📖 **[Complete Documentation](https://github.com/enfyra/documents)** - Full guide to building with Enfyra
|
|
108
|
+
🔧 **[Installation Guide](https://github.com/enfyra/documents/blob/main/getting-started/installation.md)** - Backend and frontend setup
|
|
109
|
+
🎨 **[App Documentation](https://github.com/enfyra/app#readme)** - Frontend application template
|
|
109
110
|
|
|
110
111
|
## Support
|
|
111
112
|
|
|
112
113
|
Having issues? We're here to help:
|
|
113
114
|
|
|
114
|
-
- 🐛 [Report bugs](https://github.com/
|
|
115
|
-
- 💬 [Ask questions](https://github.com/
|
|
116
|
-
- 📧 [Email support](mailto:dothinh115@gmail.com)
|
|
115
|
+
- 🐛 [Report bugs](https://github.com/enfyra/create-enfyra-app/issues)
|
|
116
|
+
- 💬 [Ask questions](https://github.com/enfyra/app/discussions)
|
|
117
117
|
|
|
118
118
|
## Related
|
|
119
119
|
|
|
120
|
-
- **[Enfyra App](https://github.com/
|
|
121
|
-
- **[Enfyra
|
|
122
|
-
- **[Create Enfyra Server](https://github.com/
|
|
120
|
+
- **[Enfyra App](https://github.com/enfyra/app)** - The frontend template
|
|
121
|
+
- **[Enfyra Server](https://github.com/enfyra/server)** - Backend framework
|
|
122
|
+
- **[Create Enfyra Server](https://github.com/enfyra/create-enfyra-server)** - Backend CLI
|
|
123
123
|
|
|
124
124
|
---
|
|
125
125
|
|
|
126
|
-
Built by
|
|
126
|
+
Built by Enfyra Team • MIT License
|
|
@@ -221,11 +221,9 @@ async function installDependencies(projectPath, config) {
|
|
|
221
221
|
|
|
222
222
|
|
|
223
223
|
async function initializeGit(projectPath) {
|
|
224
|
-
// Check if git is available
|
|
225
224
|
try {
|
|
226
225
|
execSync('git --version', { stdio: 'pipe', shell: true });
|
|
227
226
|
} catch {
|
|
228
|
-
// Git is not available, skip initialization
|
|
229
227
|
return;
|
|
230
228
|
}
|
|
231
229
|
|
|
@@ -235,39 +233,30 @@ async function initializeGit(projectPath) {
|
|
|
235
233
|
stdio: 'pipe',
|
|
236
234
|
shell: true
|
|
237
235
|
});
|
|
238
|
-
|
|
236
|
+
|
|
239
237
|
gitInit.on('close', (code) => {
|
|
240
|
-
if (code
|
|
241
|
-
|
|
242
|
-
|
|
238
|
+
if (code !== 0) { resolve(); return; }
|
|
239
|
+
|
|
240
|
+
const gitAdd = spawn('git', ['add', '.'], {
|
|
241
|
+
cwd: projectPath,
|
|
242
|
+
stdio: 'pipe',
|
|
243
|
+
shell: true
|
|
244
|
+
});
|
|
245
|
+
|
|
246
|
+
gitAdd.on('close', (addCode) => {
|
|
247
|
+
if (addCode !== 0) { resolve(); return; }
|
|
248
|
+
|
|
249
|
+
const gitCommit = spawn('git', ['commit', '-m', 'Initial commit from create-app'], {
|
|
243
250
|
cwd: projectPath,
|
|
244
251
|
stdio: 'pipe',
|
|
245
252
|
shell: true
|
|
246
253
|
});
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
const gitCommit = spawn('git', ['commit', '-m', 'Initial commit from create-app'], {
|
|
251
|
-
cwd: projectPath,
|
|
252
|
-
stdio: 'pipe',
|
|
253
|
-
shell: true
|
|
254
|
-
});
|
|
255
|
-
|
|
256
|
-
gitCommit.on('close', () => {
|
|
257
|
-
resolve();
|
|
258
|
-
});
|
|
259
|
-
} else {
|
|
260
|
-
resolve();
|
|
261
|
-
}
|
|
262
|
-
});
|
|
263
|
-
} else {
|
|
264
|
-
resolve();
|
|
265
|
-
}
|
|
266
|
-
});
|
|
267
|
-
|
|
268
|
-
gitInit.on('error', () => {
|
|
269
|
-
resolve();
|
|
254
|
+
|
|
255
|
+
gitCommit.on('close', () => resolve());
|
|
256
|
+
});
|
|
270
257
|
});
|
|
258
|
+
|
|
259
|
+
gitInit.on('error', () => resolve());
|
|
271
260
|
});
|
|
272
261
|
}
|
|
273
262
|
|
package/index.js
CHANGED
|
@@ -4,6 +4,7 @@ const { Command } = require('commander');
|
|
|
4
4
|
const chalk = require('chalk');
|
|
5
5
|
const fs = require('fs-extra');
|
|
6
6
|
const path = require('path');
|
|
7
|
+
const { execSync } = require('child_process');
|
|
7
8
|
const inquirer = require('inquirer');
|
|
8
9
|
const { checkNodeVersion } = require('./components/validators');
|
|
9
10
|
const { promptForConfiguration } = require('./components/prompts');
|
|
@@ -12,7 +13,8 @@ const { setupProject, detectPackageManagers } = require('./components/project-se
|
|
|
12
13
|
const program = new Command();
|
|
13
14
|
const packageJson = require('./package.json');
|
|
14
15
|
|
|
15
|
-
|
|
16
|
+
const ENFYRA_UPSTREAM = 'https://github.com/enfyra/app.git';
|
|
17
|
+
|
|
16
18
|
const banner = `
|
|
17
19
|
${chalk.cyan.bold('╔═══════════════════════════════════════╗')}
|
|
18
20
|
${chalk.cyan.bold('║')} ${chalk.white.bold('🚀 Create Enfyra App')} ${chalk.cyan.bold('║')}
|
|
@@ -20,32 +22,113 @@ ${chalk.cyan.bold('║')} ${chalk.gray('Frontend scaffolding made easy')}
|
|
|
20
22
|
${chalk.cyan.bold('╚═══════════════════════════════════════╝')}
|
|
21
23
|
`;
|
|
22
24
|
|
|
23
|
-
async function
|
|
25
|
+
async function upgradeProject() {
|
|
24
26
|
console.log(banner);
|
|
25
|
-
|
|
27
|
+
console.log(chalk.blue.bold('⬆ Upgrade Enfyra App\n'));
|
|
28
|
+
|
|
29
|
+
checkNodeVersion();
|
|
30
|
+
|
|
31
|
+
const cwd = process.cwd();
|
|
32
|
+
const nuxtConfig = fs.existsSync(path.join(cwd, 'nuxt.config.ts')) || fs.existsSync(path.join(cwd, 'nuxt.config.js'));
|
|
33
|
+
if (!nuxtConfig) {
|
|
34
|
+
console.log(chalk.red('❌ Not an Enfyra app directory. Run this command inside your Enfyra project root.'));
|
|
35
|
+
process.exit(1);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
try {
|
|
39
|
+
execSync('git --version', { stdio: 'pipe', shell: true });
|
|
40
|
+
} catch {
|
|
41
|
+
console.log(chalk.red('❌ Git is required for upgrade. Please install git first.'));
|
|
42
|
+
process.exit(1);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
let hasUpstream = false;
|
|
46
|
+
try {
|
|
47
|
+
const remotes = execSync('git remote', { cwd, encoding: 'utf8', stdio: 'pipe', shell: true }).trim();
|
|
48
|
+
hasUpstream = remotes.split('\n').includes('upstream');
|
|
49
|
+
} catch {}
|
|
50
|
+
|
|
51
|
+
if (!hasUpstream) {
|
|
52
|
+
console.log(chalk.yellow('This project does not have an upstream remote configured.'));
|
|
53
|
+
console.log(chalk.gray(`Upstream points to the official Enfyra app repository (${ENFYRA_UPSTREAM}).`));
|
|
54
|
+
console.log(chalk.gray('Adding it allows you to pull the latest framework updates and merge them into your project.'));
|
|
55
|
+
console.log(chalk.gray('Your custom code will not be affected unless it conflicts with upstream changes.\n'));
|
|
56
|
+
|
|
57
|
+
const { confirmUpstream } = await inquirer.prompt([
|
|
58
|
+
{
|
|
59
|
+
type: 'confirm',
|
|
60
|
+
name: 'confirmUpstream',
|
|
61
|
+
message: 'Add upstream remote to this project?',
|
|
62
|
+
default: true
|
|
63
|
+
}
|
|
64
|
+
]);
|
|
65
|
+
|
|
66
|
+
if (!confirmUpstream) {
|
|
67
|
+
console.log(chalk.gray('\nUpgrade cancelled.'));
|
|
68
|
+
process.exit(0);
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
execSync(`git remote add upstream ${ENFYRA_UPSTREAM}`, { cwd, stdio: 'pipe', shell: true });
|
|
72
|
+
console.log(chalk.green('✓ upstream remote added\n'));
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
console.log(chalk.gray('Fetching upstream...'));
|
|
76
|
+
execSync('git fetch upstream', { cwd, stdio: 'pipe', shell: true });
|
|
77
|
+
console.log(chalk.green('✓ upstream fetched'));
|
|
78
|
+
|
|
79
|
+
const currentBranch = execSync('git rev-parse --abbrev-ref HEAD', { cwd, encoding: 'utf8', shell: true }).trim();
|
|
80
|
+
console.log(chalk.gray(`Current branch: ${currentBranch}\n`));
|
|
81
|
+
|
|
82
|
+
console.log(chalk.gray('Merging upstream/main...'));
|
|
83
|
+
try {
|
|
84
|
+
execSync(`git merge upstream/main --no-edit`, { cwd, stdio: 'pipe', shell: true });
|
|
85
|
+
console.log(chalk.green.bold('\n🎉 Upgrade completed successfully!'));
|
|
86
|
+
} catch {
|
|
87
|
+
const status = execSync('git status --porcelain', { cwd, encoding: 'utf8', shell: true });
|
|
88
|
+
if (status.includes('UU') || status.includes('AA')) {
|
|
89
|
+
console.log(chalk.yellow.bold('\n⚠ Merge conflicts detected!'));
|
|
90
|
+
console.log(chalk.gray('Resolve the conflicts listed below, then commit:'));
|
|
91
|
+
console.log(chalk.gray(' git add .'));
|
|
92
|
+
console.log(chalk.gray(' git commit\n'));
|
|
93
|
+
const lines = status.split('\n').filter(l => l.trim());
|
|
94
|
+
lines.forEach(l => {
|
|
95
|
+
if (l.startsWith('UU') || l.startsWith('AA')) {
|
|
96
|
+
console.log(chalk.red(` CONFLICT: ${l.slice(3)}`));
|
|
97
|
+
}
|
|
98
|
+
});
|
|
99
|
+
} else {
|
|
100
|
+
throw new Error('Merge failed');
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
try {
|
|
105
|
+
execSync('git remote remove upstream', { cwd, stdio: 'pipe', shell: true });
|
|
106
|
+
console.log(chalk.gray('\n✓ upstream remote removed'));
|
|
107
|
+
} catch {}
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
async function createProject() {
|
|
111
|
+
console.log(banner);
|
|
112
|
+
|
|
26
113
|
try {
|
|
27
|
-
// Check Node.js version
|
|
28
114
|
checkNodeVersion();
|
|
29
|
-
|
|
30
|
-
// Detect available package managers
|
|
115
|
+
|
|
31
116
|
const availableManagers = detectPackageManagers();
|
|
32
|
-
|
|
117
|
+
|
|
33
118
|
if (availableManagers.length === 0) {
|
|
34
119
|
console.log(chalk.red('❌ No compatible package managers found!'));
|
|
35
120
|
console.log(chalk.yellow('Please install npm (v8+), yarn (v1.22+), pnpm (v7+), or bun (v1+)'));
|
|
36
121
|
process.exit(1);
|
|
37
122
|
}
|
|
38
|
-
|
|
39
|
-
// Show detected package managers with versions
|
|
123
|
+
|
|
40
124
|
console.log(chalk.gray('Detected package managers:'));
|
|
41
125
|
availableManagers.forEach(pm => {
|
|
42
126
|
console.log(chalk.gray(` • ${pm.name} v${pm.version}`));
|
|
43
127
|
});
|
|
44
128
|
console.log('');
|
|
45
|
-
|
|
46
|
-
// Get project name from command line or prompt with default
|
|
129
|
+
|
|
47
130
|
let projectName = program.args[0];
|
|
48
|
-
|
|
131
|
+
|
|
49
132
|
if (!projectName) {
|
|
50
133
|
const { name } = await inquirer.prompt([
|
|
51
134
|
{
|
|
@@ -64,42 +147,44 @@ async function main() {
|
|
|
64
147
|
projectName = name;
|
|
65
148
|
}
|
|
66
149
|
|
|
67
|
-
// Validate project name and directory
|
|
68
150
|
const projectPath = path.resolve(projectName);
|
|
69
|
-
|
|
151
|
+
|
|
70
152
|
if (fs.existsSync(projectPath)) {
|
|
71
153
|
console.log(chalk.red(`❌ Directory ${chalk.bold(projectName)} already exists!`));
|
|
72
154
|
process.exit(1);
|
|
73
155
|
}
|
|
74
156
|
|
|
75
|
-
// Prompt for configuration
|
|
76
157
|
const config = await promptForConfiguration(projectName, availableManagers);
|
|
77
158
|
|
|
78
|
-
// Setup project
|
|
79
159
|
await setupProject(config, projectPath);
|
|
80
|
-
|
|
81
|
-
// Success message
|
|
160
|
+
|
|
82
161
|
console.log(chalk.green.bold('\n🎉 Project created successfully!'));
|
|
83
162
|
console.log(chalk.blue('\n📝 Next steps:'));
|
|
84
163
|
console.log(chalk.gray(` cd ${projectName}`));
|
|
85
164
|
console.log(chalk.gray(` ${config.packageManager} run dev`));
|
|
165
|
+
console.log(chalk.gray(`\n💡 To upgrade later: npx @enfyra/create-app@latest --upgrade`));
|
|
86
166
|
console.log();
|
|
87
167
|
|
|
88
168
|
} catch (error) {
|
|
89
169
|
console.error(chalk.red.bold('\n❌ Error creating project:'));
|
|
90
170
|
console.error(chalk.red(error.message));
|
|
91
171
|
console.error(chalk.gray(error.stack));
|
|
92
|
-
|
|
172
|
+
|
|
93
173
|
process.exit(1);
|
|
94
174
|
}
|
|
95
175
|
}
|
|
96
176
|
|
|
97
|
-
// Program setup
|
|
98
177
|
program
|
|
99
178
|
.name('create-app')
|
|
100
179
|
.description('Create a new Enfyra frontend application')
|
|
101
180
|
.version(packageJson.version)
|
|
181
|
+
.option('--upgrade', 'Upgrade existing Enfyra app from upstream')
|
|
102
182
|
.argument('[project-name]', 'Name of the project to create')
|
|
103
|
-
.action(
|
|
183
|
+
.action((projectName, options) => {
|
|
184
|
+
if (options.upgrade) {
|
|
185
|
+
return upgradeProject();
|
|
186
|
+
}
|
|
187
|
+
return createProject();
|
|
188
|
+
});
|
|
104
189
|
|
|
105
190
|
program.parse();
|
|
@@ -0,0 +1,772 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@enfyra/create-enfyra-app",
|
|
3
|
+
"version": "0.1.15",
|
|
4
|
+
"lockfileVersion": 3,
|
|
5
|
+
"requires": true,
|
|
6
|
+
"packages": {
|
|
7
|
+
"": {
|
|
8
|
+
"name": "@enfyra/create-enfyra-app",
|
|
9
|
+
"version": "0.1.15",
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"dependencies": {
|
|
12
|
+
"chalk": "^4.1.2",
|
|
13
|
+
"commander": "^11.1.0",
|
|
14
|
+
"fs-extra": "^11.1.1",
|
|
15
|
+
"giget": "^2.0.0",
|
|
16
|
+
"inquirer": "^8.2.5",
|
|
17
|
+
"ora": "^5.4.1"
|
|
18
|
+
},
|
|
19
|
+
"bin": {
|
|
20
|
+
"create-enfyra-app": "index.js"
|
|
21
|
+
},
|
|
22
|
+
"engines": {
|
|
23
|
+
"node": ">=20.0.0"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"node_modules/@inquirer/external-editor": {
|
|
27
|
+
"version": "1.0.1",
|
|
28
|
+
"resolved": "https://registry.npmjs.org/@inquirer/external-editor/-/external-editor-1.0.1.tgz",
|
|
29
|
+
"integrity": "sha512-Oau4yL24d2B5IL4ma4UpbQigkVhzPDXLoqy1ggK4gnHg/stmkffJE4oOXHXF3uz0UEpywG68KcyXsyYpA1Re/Q==",
|
|
30
|
+
"license": "MIT",
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"chardet": "^2.1.0",
|
|
33
|
+
"iconv-lite": "^0.6.3"
|
|
34
|
+
},
|
|
35
|
+
"engines": {
|
|
36
|
+
"node": ">=18"
|
|
37
|
+
},
|
|
38
|
+
"peerDependencies": {
|
|
39
|
+
"@types/node": ">=18"
|
|
40
|
+
},
|
|
41
|
+
"peerDependenciesMeta": {
|
|
42
|
+
"@types/node": {
|
|
43
|
+
"optional": true
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"node_modules/ansi-escapes": {
|
|
48
|
+
"version": "4.3.2",
|
|
49
|
+
"resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
|
|
50
|
+
"integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==",
|
|
51
|
+
"license": "MIT",
|
|
52
|
+
"dependencies": {
|
|
53
|
+
"type-fest": "^0.21.3"
|
|
54
|
+
},
|
|
55
|
+
"engines": {
|
|
56
|
+
"node": ">=8"
|
|
57
|
+
},
|
|
58
|
+
"funding": {
|
|
59
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
"node_modules/ansi-regex": {
|
|
63
|
+
"version": "5.0.1",
|
|
64
|
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
|
65
|
+
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
|
|
66
|
+
"license": "MIT",
|
|
67
|
+
"engines": {
|
|
68
|
+
"node": ">=8"
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"node_modules/ansi-styles": {
|
|
72
|
+
"version": "4.3.0",
|
|
73
|
+
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
74
|
+
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
75
|
+
"license": "MIT",
|
|
76
|
+
"dependencies": {
|
|
77
|
+
"color-convert": "^2.0.1"
|
|
78
|
+
},
|
|
79
|
+
"engines": {
|
|
80
|
+
"node": ">=8"
|
|
81
|
+
},
|
|
82
|
+
"funding": {
|
|
83
|
+
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
"node_modules/base64-js": {
|
|
87
|
+
"version": "1.5.1",
|
|
88
|
+
"resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
|
|
89
|
+
"integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
|
|
90
|
+
"funding": [
|
|
91
|
+
{
|
|
92
|
+
"type": "github",
|
|
93
|
+
"url": "https://github.com/sponsors/feross"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"type": "patreon",
|
|
97
|
+
"url": "https://www.patreon.com/feross"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"type": "consulting",
|
|
101
|
+
"url": "https://feross.org/support"
|
|
102
|
+
}
|
|
103
|
+
],
|
|
104
|
+
"license": "MIT"
|
|
105
|
+
},
|
|
106
|
+
"node_modules/bl": {
|
|
107
|
+
"version": "4.1.0",
|
|
108
|
+
"resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz",
|
|
109
|
+
"integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==",
|
|
110
|
+
"license": "MIT",
|
|
111
|
+
"dependencies": {
|
|
112
|
+
"buffer": "^5.5.0",
|
|
113
|
+
"inherits": "^2.0.4",
|
|
114
|
+
"readable-stream": "^3.4.0"
|
|
115
|
+
}
|
|
116
|
+
},
|
|
117
|
+
"node_modules/buffer": {
|
|
118
|
+
"version": "5.7.1",
|
|
119
|
+
"resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
|
|
120
|
+
"integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
|
|
121
|
+
"funding": [
|
|
122
|
+
{
|
|
123
|
+
"type": "github",
|
|
124
|
+
"url": "https://github.com/sponsors/feross"
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"type": "patreon",
|
|
128
|
+
"url": "https://www.patreon.com/feross"
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"type": "consulting",
|
|
132
|
+
"url": "https://feross.org/support"
|
|
133
|
+
}
|
|
134
|
+
],
|
|
135
|
+
"license": "MIT",
|
|
136
|
+
"dependencies": {
|
|
137
|
+
"base64-js": "^1.3.1",
|
|
138
|
+
"ieee754": "^1.1.13"
|
|
139
|
+
}
|
|
140
|
+
},
|
|
141
|
+
"node_modules/chalk": {
|
|
142
|
+
"version": "4.1.2",
|
|
143
|
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
|
144
|
+
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
145
|
+
"license": "MIT",
|
|
146
|
+
"dependencies": {
|
|
147
|
+
"ansi-styles": "^4.1.0",
|
|
148
|
+
"supports-color": "^7.1.0"
|
|
149
|
+
},
|
|
150
|
+
"engines": {
|
|
151
|
+
"node": ">=10"
|
|
152
|
+
},
|
|
153
|
+
"funding": {
|
|
154
|
+
"url": "https://github.com/chalk/chalk?sponsor=1"
|
|
155
|
+
}
|
|
156
|
+
},
|
|
157
|
+
"node_modules/chardet": {
|
|
158
|
+
"version": "2.1.0",
|
|
159
|
+
"resolved": "https://registry.npmjs.org/chardet/-/chardet-2.1.0.tgz",
|
|
160
|
+
"integrity": "sha512-bNFETTG/pM5ryzQ9Ad0lJOTa6HWD/YsScAR3EnCPZRPlQh77JocYktSHOUHelyhm8IARL+o4c4F1bP5KVOjiRA==",
|
|
161
|
+
"license": "MIT"
|
|
162
|
+
},
|
|
163
|
+
"node_modules/citty": {
|
|
164
|
+
"version": "0.1.6",
|
|
165
|
+
"resolved": "https://registry.npmjs.org/citty/-/citty-0.1.6.tgz",
|
|
166
|
+
"integrity": "sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==",
|
|
167
|
+
"license": "MIT",
|
|
168
|
+
"dependencies": {
|
|
169
|
+
"consola": "^3.2.3"
|
|
170
|
+
}
|
|
171
|
+
},
|
|
172
|
+
"node_modules/cli-cursor": {
|
|
173
|
+
"version": "3.1.0",
|
|
174
|
+
"resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz",
|
|
175
|
+
"integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==",
|
|
176
|
+
"license": "MIT",
|
|
177
|
+
"dependencies": {
|
|
178
|
+
"restore-cursor": "^3.1.0"
|
|
179
|
+
},
|
|
180
|
+
"engines": {
|
|
181
|
+
"node": ">=8"
|
|
182
|
+
}
|
|
183
|
+
},
|
|
184
|
+
"node_modules/cli-spinners": {
|
|
185
|
+
"version": "2.9.2",
|
|
186
|
+
"resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz",
|
|
187
|
+
"integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==",
|
|
188
|
+
"license": "MIT",
|
|
189
|
+
"engines": {
|
|
190
|
+
"node": ">=6"
|
|
191
|
+
},
|
|
192
|
+
"funding": {
|
|
193
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
194
|
+
}
|
|
195
|
+
},
|
|
196
|
+
"node_modules/cli-width": {
|
|
197
|
+
"version": "3.0.0",
|
|
198
|
+
"resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz",
|
|
199
|
+
"integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==",
|
|
200
|
+
"license": "ISC",
|
|
201
|
+
"engines": {
|
|
202
|
+
"node": ">= 10"
|
|
203
|
+
}
|
|
204
|
+
},
|
|
205
|
+
"node_modules/clone": {
|
|
206
|
+
"version": "1.0.4",
|
|
207
|
+
"resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz",
|
|
208
|
+
"integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==",
|
|
209
|
+
"license": "MIT",
|
|
210
|
+
"engines": {
|
|
211
|
+
"node": ">=0.8"
|
|
212
|
+
}
|
|
213
|
+
},
|
|
214
|
+
"node_modules/color-convert": {
|
|
215
|
+
"version": "2.0.1",
|
|
216
|
+
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
217
|
+
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
218
|
+
"license": "MIT",
|
|
219
|
+
"dependencies": {
|
|
220
|
+
"color-name": "~1.1.4"
|
|
221
|
+
},
|
|
222
|
+
"engines": {
|
|
223
|
+
"node": ">=7.0.0"
|
|
224
|
+
}
|
|
225
|
+
},
|
|
226
|
+
"node_modules/color-name": {
|
|
227
|
+
"version": "1.1.4",
|
|
228
|
+
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
229
|
+
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
|
230
|
+
"license": "MIT"
|
|
231
|
+
},
|
|
232
|
+
"node_modules/commander": {
|
|
233
|
+
"version": "11.1.0",
|
|
234
|
+
"resolved": "https://registry.npmjs.org/commander/-/commander-11.1.0.tgz",
|
|
235
|
+
"integrity": "sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==",
|
|
236
|
+
"license": "MIT",
|
|
237
|
+
"engines": {
|
|
238
|
+
"node": ">=16"
|
|
239
|
+
}
|
|
240
|
+
},
|
|
241
|
+
"node_modules/confbox": {
|
|
242
|
+
"version": "0.2.2",
|
|
243
|
+
"resolved": "https://registry.npmjs.org/confbox/-/confbox-0.2.2.tgz",
|
|
244
|
+
"integrity": "sha512-1NB+BKqhtNipMsov4xI/NnhCKp9XG9NamYp5PVm9klAT0fsrNPjaFICsCFhNhwZJKNh7zB/3q8qXz0E9oaMNtQ==",
|
|
245
|
+
"license": "MIT"
|
|
246
|
+
},
|
|
247
|
+
"node_modules/consola": {
|
|
248
|
+
"version": "3.4.2",
|
|
249
|
+
"resolved": "https://registry.npmjs.org/consola/-/consola-3.4.2.tgz",
|
|
250
|
+
"integrity": "sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==",
|
|
251
|
+
"license": "MIT",
|
|
252
|
+
"engines": {
|
|
253
|
+
"node": "^14.18.0 || >=16.10.0"
|
|
254
|
+
}
|
|
255
|
+
},
|
|
256
|
+
"node_modules/defaults": {
|
|
257
|
+
"version": "1.0.4",
|
|
258
|
+
"resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz",
|
|
259
|
+
"integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==",
|
|
260
|
+
"license": "MIT",
|
|
261
|
+
"dependencies": {
|
|
262
|
+
"clone": "^1.0.2"
|
|
263
|
+
},
|
|
264
|
+
"funding": {
|
|
265
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
266
|
+
}
|
|
267
|
+
},
|
|
268
|
+
"node_modules/defu": {
|
|
269
|
+
"version": "6.1.4",
|
|
270
|
+
"resolved": "https://registry.npmjs.org/defu/-/defu-6.1.4.tgz",
|
|
271
|
+
"integrity": "sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==",
|
|
272
|
+
"license": "MIT"
|
|
273
|
+
},
|
|
274
|
+
"node_modules/emoji-regex": {
|
|
275
|
+
"version": "8.0.0",
|
|
276
|
+
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
|
|
277
|
+
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
|
278
|
+
"license": "MIT"
|
|
279
|
+
},
|
|
280
|
+
"node_modules/escape-string-regexp": {
|
|
281
|
+
"version": "1.0.5",
|
|
282
|
+
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
|
|
283
|
+
"integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
|
|
284
|
+
"license": "MIT",
|
|
285
|
+
"engines": {
|
|
286
|
+
"node": ">=0.8.0"
|
|
287
|
+
}
|
|
288
|
+
},
|
|
289
|
+
"node_modules/exsolve": {
|
|
290
|
+
"version": "1.0.7",
|
|
291
|
+
"resolved": "https://registry.npmjs.org/exsolve/-/exsolve-1.0.7.tgz",
|
|
292
|
+
"integrity": "sha512-VO5fQUzZtI6C+vx4w/4BWJpg3s/5l+6pRQEHzFRM8WFi4XffSP1Z+4qi7GbjWbvRQEbdIco5mIMq+zX4rPuLrw==",
|
|
293
|
+
"license": "MIT"
|
|
294
|
+
},
|
|
295
|
+
"node_modules/figures": {
|
|
296
|
+
"version": "3.2.0",
|
|
297
|
+
"resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz",
|
|
298
|
+
"integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==",
|
|
299
|
+
"license": "MIT",
|
|
300
|
+
"dependencies": {
|
|
301
|
+
"escape-string-regexp": "^1.0.5"
|
|
302
|
+
},
|
|
303
|
+
"engines": {
|
|
304
|
+
"node": ">=8"
|
|
305
|
+
},
|
|
306
|
+
"funding": {
|
|
307
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
308
|
+
}
|
|
309
|
+
},
|
|
310
|
+
"node_modules/fs-extra": {
|
|
311
|
+
"version": "11.3.1",
|
|
312
|
+
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.1.tgz",
|
|
313
|
+
"integrity": "sha512-eXvGGwZ5CL17ZSwHWd3bbgk7UUpF6IFHtP57NYYakPvHOs8GDgDe5KJI36jIJzDkJ6eJjuzRA8eBQb6SkKue0g==",
|
|
314
|
+
"license": "MIT",
|
|
315
|
+
"dependencies": {
|
|
316
|
+
"graceful-fs": "^4.2.0",
|
|
317
|
+
"jsonfile": "^6.0.1",
|
|
318
|
+
"universalify": "^2.0.0"
|
|
319
|
+
},
|
|
320
|
+
"engines": {
|
|
321
|
+
"node": ">=14.14"
|
|
322
|
+
}
|
|
323
|
+
},
|
|
324
|
+
"node_modules/giget": {
|
|
325
|
+
"version": "2.0.0",
|
|
326
|
+
"resolved": "https://registry.npmjs.org/giget/-/giget-2.0.0.tgz",
|
|
327
|
+
"integrity": "sha512-L5bGsVkxJbJgdnwyuheIunkGatUF/zssUoxxjACCseZYAVbaqdh9Tsmmlkl8vYan09H7sbvKt4pS8GqKLBrEzA==",
|
|
328
|
+
"license": "MIT",
|
|
329
|
+
"dependencies": {
|
|
330
|
+
"citty": "^0.1.6",
|
|
331
|
+
"consola": "^3.4.0",
|
|
332
|
+
"defu": "^6.1.4",
|
|
333
|
+
"node-fetch-native": "^1.6.6",
|
|
334
|
+
"nypm": "^0.6.0",
|
|
335
|
+
"pathe": "^2.0.3"
|
|
336
|
+
},
|
|
337
|
+
"bin": {
|
|
338
|
+
"giget": "dist/cli.mjs"
|
|
339
|
+
}
|
|
340
|
+
},
|
|
341
|
+
"node_modules/graceful-fs": {
|
|
342
|
+
"version": "4.2.11",
|
|
343
|
+
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
|
|
344
|
+
"integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
|
|
345
|
+
"license": "ISC"
|
|
346
|
+
},
|
|
347
|
+
"node_modules/has-flag": {
|
|
348
|
+
"version": "4.0.0",
|
|
349
|
+
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
|
350
|
+
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
|
|
351
|
+
"license": "MIT",
|
|
352
|
+
"engines": {
|
|
353
|
+
"node": ">=8"
|
|
354
|
+
}
|
|
355
|
+
},
|
|
356
|
+
"node_modules/iconv-lite": {
|
|
357
|
+
"version": "0.6.3",
|
|
358
|
+
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
|
|
359
|
+
"integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
|
|
360
|
+
"license": "MIT",
|
|
361
|
+
"dependencies": {
|
|
362
|
+
"safer-buffer": ">= 2.1.2 < 3.0.0"
|
|
363
|
+
},
|
|
364
|
+
"engines": {
|
|
365
|
+
"node": ">=0.10.0"
|
|
366
|
+
}
|
|
367
|
+
},
|
|
368
|
+
"node_modules/ieee754": {
|
|
369
|
+
"version": "1.2.1",
|
|
370
|
+
"resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
|
|
371
|
+
"integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
|
|
372
|
+
"funding": [
|
|
373
|
+
{
|
|
374
|
+
"type": "github",
|
|
375
|
+
"url": "https://github.com/sponsors/feross"
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
"type": "patreon",
|
|
379
|
+
"url": "https://www.patreon.com/feross"
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"type": "consulting",
|
|
383
|
+
"url": "https://feross.org/support"
|
|
384
|
+
}
|
|
385
|
+
],
|
|
386
|
+
"license": "BSD-3-Clause"
|
|
387
|
+
},
|
|
388
|
+
"node_modules/inherits": {
|
|
389
|
+
"version": "2.0.4",
|
|
390
|
+
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
|
|
391
|
+
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
|
|
392
|
+
"license": "ISC"
|
|
393
|
+
},
|
|
394
|
+
"node_modules/inquirer": {
|
|
395
|
+
"version": "8.2.7",
|
|
396
|
+
"resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.7.tgz",
|
|
397
|
+
"integrity": "sha512-UjOaSel/iddGZJ5xP/Eixh6dY1XghiBw4XK13rCCIJcJfyhhoul/7KhLLUGtebEj6GDYM6Vnx/mVsjx2L/mFIA==",
|
|
398
|
+
"license": "MIT",
|
|
399
|
+
"dependencies": {
|
|
400
|
+
"@inquirer/external-editor": "^1.0.0",
|
|
401
|
+
"ansi-escapes": "^4.2.1",
|
|
402
|
+
"chalk": "^4.1.1",
|
|
403
|
+
"cli-cursor": "^3.1.0",
|
|
404
|
+
"cli-width": "^3.0.0",
|
|
405
|
+
"figures": "^3.0.0",
|
|
406
|
+
"lodash": "^4.17.21",
|
|
407
|
+
"mute-stream": "0.0.8",
|
|
408
|
+
"ora": "^5.4.1",
|
|
409
|
+
"run-async": "^2.4.0",
|
|
410
|
+
"rxjs": "^7.5.5",
|
|
411
|
+
"string-width": "^4.1.0",
|
|
412
|
+
"strip-ansi": "^6.0.0",
|
|
413
|
+
"through": "^2.3.6",
|
|
414
|
+
"wrap-ansi": "^6.0.1"
|
|
415
|
+
},
|
|
416
|
+
"engines": {
|
|
417
|
+
"node": ">=12.0.0"
|
|
418
|
+
}
|
|
419
|
+
},
|
|
420
|
+
"node_modules/is-fullwidth-code-point": {
|
|
421
|
+
"version": "3.0.0",
|
|
422
|
+
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
|
|
423
|
+
"integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
|
|
424
|
+
"license": "MIT",
|
|
425
|
+
"engines": {
|
|
426
|
+
"node": ">=8"
|
|
427
|
+
}
|
|
428
|
+
},
|
|
429
|
+
"node_modules/is-interactive": {
|
|
430
|
+
"version": "1.0.0",
|
|
431
|
+
"resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz",
|
|
432
|
+
"integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==",
|
|
433
|
+
"license": "MIT",
|
|
434
|
+
"engines": {
|
|
435
|
+
"node": ">=8"
|
|
436
|
+
}
|
|
437
|
+
},
|
|
438
|
+
"node_modules/is-unicode-supported": {
|
|
439
|
+
"version": "0.1.0",
|
|
440
|
+
"resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz",
|
|
441
|
+
"integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==",
|
|
442
|
+
"license": "MIT",
|
|
443
|
+
"engines": {
|
|
444
|
+
"node": ">=10"
|
|
445
|
+
},
|
|
446
|
+
"funding": {
|
|
447
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
448
|
+
}
|
|
449
|
+
},
|
|
450
|
+
"node_modules/jsonfile": {
|
|
451
|
+
"version": "6.2.0",
|
|
452
|
+
"resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.0.tgz",
|
|
453
|
+
"integrity": "sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==",
|
|
454
|
+
"license": "MIT",
|
|
455
|
+
"dependencies": {
|
|
456
|
+
"universalify": "^2.0.0"
|
|
457
|
+
},
|
|
458
|
+
"optionalDependencies": {
|
|
459
|
+
"graceful-fs": "^4.1.6"
|
|
460
|
+
}
|
|
461
|
+
},
|
|
462
|
+
"node_modules/lodash": {
|
|
463
|
+
"version": "4.17.21",
|
|
464
|
+
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
|
|
465
|
+
"integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
|
|
466
|
+
"license": "MIT"
|
|
467
|
+
},
|
|
468
|
+
"node_modules/log-symbols": {
|
|
469
|
+
"version": "4.1.0",
|
|
470
|
+
"resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz",
|
|
471
|
+
"integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==",
|
|
472
|
+
"license": "MIT",
|
|
473
|
+
"dependencies": {
|
|
474
|
+
"chalk": "^4.1.0",
|
|
475
|
+
"is-unicode-supported": "^0.1.0"
|
|
476
|
+
},
|
|
477
|
+
"engines": {
|
|
478
|
+
"node": ">=10"
|
|
479
|
+
},
|
|
480
|
+
"funding": {
|
|
481
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
482
|
+
}
|
|
483
|
+
},
|
|
484
|
+
"node_modules/mimic-fn": {
|
|
485
|
+
"version": "2.1.0",
|
|
486
|
+
"resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
|
|
487
|
+
"integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
|
|
488
|
+
"license": "MIT",
|
|
489
|
+
"engines": {
|
|
490
|
+
"node": ">=6"
|
|
491
|
+
}
|
|
492
|
+
},
|
|
493
|
+
"node_modules/mute-stream": {
|
|
494
|
+
"version": "0.0.8",
|
|
495
|
+
"resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz",
|
|
496
|
+
"integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==",
|
|
497
|
+
"license": "ISC"
|
|
498
|
+
},
|
|
499
|
+
"node_modules/node-fetch-native": {
|
|
500
|
+
"version": "1.6.7",
|
|
501
|
+
"resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.6.7.tgz",
|
|
502
|
+
"integrity": "sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==",
|
|
503
|
+
"license": "MIT"
|
|
504
|
+
},
|
|
505
|
+
"node_modules/nypm": {
|
|
506
|
+
"version": "0.6.1",
|
|
507
|
+
"resolved": "https://registry.npmjs.org/nypm/-/nypm-0.6.1.tgz",
|
|
508
|
+
"integrity": "sha512-hlacBiRiv1k9hZFiphPUkfSQ/ZfQzZDzC+8z0wL3lvDAOUu/2NnChkKuMoMjNur/9OpKuz2QsIeiPVN0xM5Q0w==",
|
|
509
|
+
"license": "MIT",
|
|
510
|
+
"dependencies": {
|
|
511
|
+
"citty": "^0.1.6",
|
|
512
|
+
"consola": "^3.4.2",
|
|
513
|
+
"pathe": "^2.0.3",
|
|
514
|
+
"pkg-types": "^2.2.0",
|
|
515
|
+
"tinyexec": "^1.0.1"
|
|
516
|
+
},
|
|
517
|
+
"bin": {
|
|
518
|
+
"nypm": "dist/cli.mjs"
|
|
519
|
+
},
|
|
520
|
+
"engines": {
|
|
521
|
+
"node": "^14.16.0 || >=16.10.0"
|
|
522
|
+
}
|
|
523
|
+
},
|
|
524
|
+
"node_modules/onetime": {
|
|
525
|
+
"version": "5.1.2",
|
|
526
|
+
"resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz",
|
|
527
|
+
"integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==",
|
|
528
|
+
"license": "MIT",
|
|
529
|
+
"dependencies": {
|
|
530
|
+
"mimic-fn": "^2.1.0"
|
|
531
|
+
},
|
|
532
|
+
"engines": {
|
|
533
|
+
"node": ">=6"
|
|
534
|
+
},
|
|
535
|
+
"funding": {
|
|
536
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
537
|
+
}
|
|
538
|
+
},
|
|
539
|
+
"node_modules/ora": {
|
|
540
|
+
"version": "5.4.1",
|
|
541
|
+
"resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz",
|
|
542
|
+
"integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==",
|
|
543
|
+
"license": "MIT",
|
|
544
|
+
"dependencies": {
|
|
545
|
+
"bl": "^4.1.0",
|
|
546
|
+
"chalk": "^4.1.0",
|
|
547
|
+
"cli-cursor": "^3.1.0",
|
|
548
|
+
"cli-spinners": "^2.5.0",
|
|
549
|
+
"is-interactive": "^1.0.0",
|
|
550
|
+
"is-unicode-supported": "^0.1.0",
|
|
551
|
+
"log-symbols": "^4.1.0",
|
|
552
|
+
"strip-ansi": "^6.0.0",
|
|
553
|
+
"wcwidth": "^1.0.1"
|
|
554
|
+
},
|
|
555
|
+
"engines": {
|
|
556
|
+
"node": ">=10"
|
|
557
|
+
},
|
|
558
|
+
"funding": {
|
|
559
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
560
|
+
}
|
|
561
|
+
},
|
|
562
|
+
"node_modules/pathe": {
|
|
563
|
+
"version": "2.0.3",
|
|
564
|
+
"resolved": "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz",
|
|
565
|
+
"integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==",
|
|
566
|
+
"license": "MIT"
|
|
567
|
+
},
|
|
568
|
+
"node_modules/pkg-types": {
|
|
569
|
+
"version": "2.3.0",
|
|
570
|
+
"resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-2.3.0.tgz",
|
|
571
|
+
"integrity": "sha512-SIqCzDRg0s9npO5XQ3tNZioRY1uK06lA41ynBC1YmFTmnY6FjUjVt6s4LoADmwoig1qqD0oK8h1p/8mlMx8Oig==",
|
|
572
|
+
"license": "MIT",
|
|
573
|
+
"dependencies": {
|
|
574
|
+
"confbox": "^0.2.2",
|
|
575
|
+
"exsolve": "^1.0.7",
|
|
576
|
+
"pathe": "^2.0.3"
|
|
577
|
+
}
|
|
578
|
+
},
|
|
579
|
+
"node_modules/readable-stream": {
|
|
580
|
+
"version": "3.6.2",
|
|
581
|
+
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
|
|
582
|
+
"integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
|
|
583
|
+
"license": "MIT",
|
|
584
|
+
"dependencies": {
|
|
585
|
+
"inherits": "^2.0.3",
|
|
586
|
+
"string_decoder": "^1.1.1",
|
|
587
|
+
"util-deprecate": "^1.0.1"
|
|
588
|
+
},
|
|
589
|
+
"engines": {
|
|
590
|
+
"node": ">= 6"
|
|
591
|
+
}
|
|
592
|
+
},
|
|
593
|
+
"node_modules/restore-cursor": {
|
|
594
|
+
"version": "3.1.0",
|
|
595
|
+
"resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz",
|
|
596
|
+
"integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==",
|
|
597
|
+
"license": "MIT",
|
|
598
|
+
"dependencies": {
|
|
599
|
+
"onetime": "^5.1.0",
|
|
600
|
+
"signal-exit": "^3.0.2"
|
|
601
|
+
},
|
|
602
|
+
"engines": {
|
|
603
|
+
"node": ">=8"
|
|
604
|
+
}
|
|
605
|
+
},
|
|
606
|
+
"node_modules/run-async": {
|
|
607
|
+
"version": "2.4.1",
|
|
608
|
+
"resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz",
|
|
609
|
+
"integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==",
|
|
610
|
+
"license": "MIT",
|
|
611
|
+
"engines": {
|
|
612
|
+
"node": ">=0.12.0"
|
|
613
|
+
}
|
|
614
|
+
},
|
|
615
|
+
"node_modules/rxjs": {
|
|
616
|
+
"version": "7.8.2",
|
|
617
|
+
"resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.2.tgz",
|
|
618
|
+
"integrity": "sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==",
|
|
619
|
+
"license": "Apache-2.0",
|
|
620
|
+
"dependencies": {
|
|
621
|
+
"tslib": "^2.1.0"
|
|
622
|
+
}
|
|
623
|
+
},
|
|
624
|
+
"node_modules/safe-buffer": {
|
|
625
|
+
"version": "5.2.1",
|
|
626
|
+
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
|
|
627
|
+
"integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
|
|
628
|
+
"funding": [
|
|
629
|
+
{
|
|
630
|
+
"type": "github",
|
|
631
|
+
"url": "https://github.com/sponsors/feross"
|
|
632
|
+
},
|
|
633
|
+
{
|
|
634
|
+
"type": "patreon",
|
|
635
|
+
"url": "https://www.patreon.com/feross"
|
|
636
|
+
},
|
|
637
|
+
{
|
|
638
|
+
"type": "consulting",
|
|
639
|
+
"url": "https://feross.org/support"
|
|
640
|
+
}
|
|
641
|
+
],
|
|
642
|
+
"license": "MIT"
|
|
643
|
+
},
|
|
644
|
+
"node_modules/safer-buffer": {
|
|
645
|
+
"version": "2.1.2",
|
|
646
|
+
"resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
|
|
647
|
+
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
|
|
648
|
+
"license": "MIT"
|
|
649
|
+
},
|
|
650
|
+
"node_modules/signal-exit": {
|
|
651
|
+
"version": "3.0.7",
|
|
652
|
+
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
|
|
653
|
+
"integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
|
|
654
|
+
"license": "ISC"
|
|
655
|
+
},
|
|
656
|
+
"node_modules/string_decoder": {
|
|
657
|
+
"version": "1.3.0",
|
|
658
|
+
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
|
|
659
|
+
"integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
|
|
660
|
+
"license": "MIT",
|
|
661
|
+
"dependencies": {
|
|
662
|
+
"safe-buffer": "~5.2.0"
|
|
663
|
+
}
|
|
664
|
+
},
|
|
665
|
+
"node_modules/string-width": {
|
|
666
|
+
"version": "4.2.3",
|
|
667
|
+
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
|
|
668
|
+
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
|
669
|
+
"license": "MIT",
|
|
670
|
+
"dependencies": {
|
|
671
|
+
"emoji-regex": "^8.0.0",
|
|
672
|
+
"is-fullwidth-code-point": "^3.0.0",
|
|
673
|
+
"strip-ansi": "^6.0.1"
|
|
674
|
+
},
|
|
675
|
+
"engines": {
|
|
676
|
+
"node": ">=8"
|
|
677
|
+
}
|
|
678
|
+
},
|
|
679
|
+
"node_modules/strip-ansi": {
|
|
680
|
+
"version": "6.0.1",
|
|
681
|
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
|
682
|
+
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
|
683
|
+
"license": "MIT",
|
|
684
|
+
"dependencies": {
|
|
685
|
+
"ansi-regex": "^5.0.1"
|
|
686
|
+
},
|
|
687
|
+
"engines": {
|
|
688
|
+
"node": ">=8"
|
|
689
|
+
}
|
|
690
|
+
},
|
|
691
|
+
"node_modules/supports-color": {
|
|
692
|
+
"version": "7.2.0",
|
|
693
|
+
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
|
694
|
+
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
|
695
|
+
"license": "MIT",
|
|
696
|
+
"dependencies": {
|
|
697
|
+
"has-flag": "^4.0.0"
|
|
698
|
+
},
|
|
699
|
+
"engines": {
|
|
700
|
+
"node": ">=8"
|
|
701
|
+
}
|
|
702
|
+
},
|
|
703
|
+
"node_modules/through": {
|
|
704
|
+
"version": "2.3.8",
|
|
705
|
+
"resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz",
|
|
706
|
+
"integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==",
|
|
707
|
+
"license": "MIT"
|
|
708
|
+
},
|
|
709
|
+
"node_modules/tinyexec": {
|
|
710
|
+
"version": "1.0.1",
|
|
711
|
+
"resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-1.0.1.tgz",
|
|
712
|
+
"integrity": "sha512-5uC6DDlmeqiOwCPmK9jMSdOuZTh8bU39Ys6yidB+UTt5hfZUPGAypSgFRiEp+jbi9qH40BLDvy85jIU88wKSqw==",
|
|
713
|
+
"license": "MIT"
|
|
714
|
+
},
|
|
715
|
+
"node_modules/tslib": {
|
|
716
|
+
"version": "2.8.1",
|
|
717
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
|
|
718
|
+
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
|
|
719
|
+
"license": "0BSD"
|
|
720
|
+
},
|
|
721
|
+
"node_modules/type-fest": {
|
|
722
|
+
"version": "0.21.3",
|
|
723
|
+
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz",
|
|
724
|
+
"integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==",
|
|
725
|
+
"license": "(MIT OR CC0-1.0)",
|
|
726
|
+
"engines": {
|
|
727
|
+
"node": ">=10"
|
|
728
|
+
},
|
|
729
|
+
"funding": {
|
|
730
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
731
|
+
}
|
|
732
|
+
},
|
|
733
|
+
"node_modules/universalify": {
|
|
734
|
+
"version": "2.0.1",
|
|
735
|
+
"resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz",
|
|
736
|
+
"integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
|
|
737
|
+
"license": "MIT",
|
|
738
|
+
"engines": {
|
|
739
|
+
"node": ">= 10.0.0"
|
|
740
|
+
}
|
|
741
|
+
},
|
|
742
|
+
"node_modules/util-deprecate": {
|
|
743
|
+
"version": "1.0.2",
|
|
744
|
+
"resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
|
|
745
|
+
"integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
|
|
746
|
+
"license": "MIT"
|
|
747
|
+
},
|
|
748
|
+
"node_modules/wcwidth": {
|
|
749
|
+
"version": "1.0.1",
|
|
750
|
+
"resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz",
|
|
751
|
+
"integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==",
|
|
752
|
+
"license": "MIT",
|
|
753
|
+
"dependencies": {
|
|
754
|
+
"defaults": "^1.0.3"
|
|
755
|
+
}
|
|
756
|
+
},
|
|
757
|
+
"node_modules/wrap-ansi": {
|
|
758
|
+
"version": "6.2.0",
|
|
759
|
+
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
|
|
760
|
+
"integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
|
|
761
|
+
"license": "MIT",
|
|
762
|
+
"dependencies": {
|
|
763
|
+
"ansi-styles": "^4.0.0",
|
|
764
|
+
"string-width": "^4.1.0",
|
|
765
|
+
"strip-ansi": "^6.0.0"
|
|
766
|
+
},
|
|
767
|
+
"engines": {
|
|
768
|
+
"node": ">=8"
|
|
769
|
+
}
|
|
770
|
+
}
|
|
771
|
+
}
|
|
772
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@enfyra/create-app",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.38",
|
|
4
4
|
"description": "Create Enfyra frontend applications with ease",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -34,12 +34,12 @@
|
|
|
34
34
|
},
|
|
35
35
|
"repository": {
|
|
36
36
|
"type": "git",
|
|
37
|
-
"url": "https://github.com/
|
|
37
|
+
"url": "https://github.com/enfyra/create-enfyra-app.git"
|
|
38
38
|
},
|
|
39
39
|
"bugs": {
|
|
40
|
-
"url": "https://github.com/
|
|
40
|
+
"url": "https://github.com/enfyra/create-enfyra-app/issues"
|
|
41
41
|
},
|
|
42
|
-
"homepage": "https://github.com/
|
|
42
|
+
"homepage": "https://github.com/enfyra/create-enfyra-app#readme",
|
|
43
43
|
"publishConfig": {
|
|
44
44
|
"access": "public"
|
|
45
45
|
}
|