@enfyra/create-app 0.1.38 → 0.1.40
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 +7 -4
- package/components/project-setup.js +26 -50
- package/components/prompts.js +2 -3
- package/index.js +2 -2
- package/package.json +10 -4
- package/.claude/settings.local.json +0 -9
- package/package-lock.json +0 -772
package/README.md
CHANGED
|
@@ -20,14 +20,17 @@ The frontend does not own backend secrets. For self-hosted backends, keep the se
|
|
|
20
20
|
## Quick Start
|
|
21
21
|
|
|
22
22
|
```bash
|
|
23
|
-
# Using npx
|
|
23
|
+
# Using npx
|
|
24
24
|
npx @enfyra/create-app
|
|
25
25
|
|
|
26
|
+
# Using npm
|
|
27
|
+
npm exec @enfyra/create-app
|
|
28
|
+
|
|
26
29
|
# Using yarn
|
|
27
|
-
yarn
|
|
30
|
+
yarn dlx @enfyra/create-app
|
|
28
31
|
|
|
29
32
|
# Using pnpm
|
|
30
|
-
pnpm
|
|
33
|
+
pnpm dlx @enfyra/create-app
|
|
31
34
|
|
|
32
35
|
# Or install globally
|
|
33
36
|
npm install -g @enfyra/create-app
|
|
@@ -51,7 +54,7 @@ create-app
|
|
|
51
54
|
## Requirements
|
|
52
55
|
|
|
53
56
|
- **Node.js** 20.0.0 or higher
|
|
54
|
-
- **Package manager**: npm
|
|
57
|
+
- **Package manager**: npm, yarn, or pnpm
|
|
55
58
|
|
|
56
59
|
## Usage
|
|
57
60
|
|
|
@@ -6,50 +6,19 @@ const { spawn, execSync } = require('child_process');
|
|
|
6
6
|
const { downloadTemplate } = require('giget');
|
|
7
7
|
const { generateEnvFile } = require('./env-builder');
|
|
8
8
|
|
|
9
|
-
// Check available package managers with version validation
|
|
10
9
|
function detectPackageManagers() {
|
|
11
10
|
const managers = [];
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
}
|
|
24
|
-
} catch {}
|
|
25
|
-
|
|
26
|
-
// Check yarn (minimum version 1.22.0)
|
|
27
|
-
try {
|
|
28
|
-
const yarnVersion = execSync('yarn --version', {
|
|
29
|
-
encoding: 'utf8',
|
|
30
|
-
stdio: 'pipe',
|
|
31
|
-
shell: true
|
|
32
|
-
}).trim();
|
|
33
|
-
const [major, minor] = yarnVersion.split('.').map(Number);
|
|
34
|
-
if (major > 1 || (major === 1 && minor >= 22)) {
|
|
35
|
-
managers.push({ name: 'yarn', value: 'yarn', version: yarnVersion });
|
|
36
|
-
}
|
|
37
|
-
} catch {}
|
|
38
|
-
|
|
39
|
-
// Check pnpm (minimum version 7.0.0)
|
|
40
|
-
try {
|
|
41
|
-
const pnpmVersion = execSync('pnpm --version', {
|
|
42
|
-
encoding: 'utf8',
|
|
43
|
-
stdio: 'pipe',
|
|
44
|
-
shell: true
|
|
45
|
-
}).trim();
|
|
46
|
-
const majorVersion = parseInt(pnpmVersion.split('.')[0]);
|
|
47
|
-
if (majorVersion >= 7) {
|
|
48
|
-
managers.push({ name: 'pnpm', value: 'pnpm', version: pnpmVersion });
|
|
49
|
-
}
|
|
50
|
-
} catch {}
|
|
51
|
-
|
|
52
|
-
// Note: bun is not supported due to native binding compatibility issues
|
|
11
|
+
|
|
12
|
+
for (const name of ['npm', 'yarn', 'pnpm']) {
|
|
13
|
+
try {
|
|
14
|
+
const version = execSync(`${name} --version`, {
|
|
15
|
+
encoding: 'utf8',
|
|
16
|
+
stdio: 'pipe',
|
|
17
|
+
shell: true
|
|
18
|
+
}).trim();
|
|
19
|
+
managers.push({ name, value: name, version });
|
|
20
|
+
} catch {}
|
|
21
|
+
}
|
|
53
22
|
|
|
54
23
|
return managers;
|
|
55
24
|
}
|
|
@@ -139,7 +108,6 @@ async function updatePackageJson(projectPath, config) {
|
|
|
139
108
|
}
|
|
140
109
|
|
|
141
110
|
async function cleanPackageManagerRestrictions(projectPath) {
|
|
142
|
-
// List of files that can restrict package manager usage
|
|
143
111
|
const restrictionFiles = [
|
|
144
112
|
'.npmrc',
|
|
145
113
|
'.yarnrc',
|
|
@@ -147,8 +115,7 @@ async function cleanPackageManagerRestrictions(projectPath) {
|
|
|
147
115
|
'pnpm-workspace.yaml',
|
|
148
116
|
'package-lock.json',
|
|
149
117
|
'yarn.lock',
|
|
150
|
-
'pnpm-lock.yaml'
|
|
151
|
-
'bun.lockb'
|
|
118
|
+
'pnpm-lock.yaml'
|
|
152
119
|
];
|
|
153
120
|
|
|
154
121
|
for (const file of restrictionFiles) {
|
|
@@ -159,17 +126,25 @@ async function cleanPackageManagerRestrictions(projectPath) {
|
|
|
159
126
|
}
|
|
160
127
|
}
|
|
161
128
|
|
|
162
|
-
// Also check package.json for packageManager field and engines restrictions
|
|
163
129
|
const packageJsonPath = path.join(projectPath, 'package.json');
|
|
164
130
|
if (fs.existsSync(packageJsonPath)) {
|
|
165
131
|
const packageJson = await fs.readJson(packageJsonPath);
|
|
166
132
|
|
|
167
|
-
// Remove packageManager field that locks to specific manager
|
|
168
133
|
if (packageJson.packageManager) {
|
|
169
134
|
delete packageJson.packageManager;
|
|
170
|
-
await fs.writeJson(packageJsonPath, packageJson, { spaces: 2 });
|
|
171
135
|
console.log(chalk.yellow('Removed packageManager restriction from package.json'));
|
|
172
136
|
}
|
|
137
|
+
|
|
138
|
+
if (packageJson.engines) {
|
|
139
|
+
delete packageJson.engines.npm;
|
|
140
|
+
delete packageJson.engines.yarn;
|
|
141
|
+
delete packageJson.engines.pnpm;
|
|
142
|
+
if (Object.keys(packageJson.engines).length === 0) {
|
|
143
|
+
delete packageJson.engines;
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
await fs.writeJson(packageJsonPath, packageJson, { spaces: 2 });
|
|
173
148
|
}
|
|
174
149
|
}
|
|
175
150
|
|
|
@@ -262,5 +237,6 @@ async function initializeGit(projectPath) {
|
|
|
262
237
|
|
|
263
238
|
module.exports = {
|
|
264
239
|
setupProject,
|
|
265
|
-
detectPackageManagers
|
|
266
|
-
|
|
240
|
+
detectPackageManagers,
|
|
241
|
+
cleanPackageManagerRestrictions
|
|
242
|
+
};
|
package/components/prompts.js
CHANGED
|
@@ -48,8 +48,7 @@ function getPackageManagerIcon(name) {
|
|
|
48
48
|
const icons = {
|
|
49
49
|
npm: '📦',
|
|
50
50
|
yarn: '🧶',
|
|
51
|
-
pnpm: '⚡'
|
|
52
|
-
bun: '🚀'
|
|
51
|
+
pnpm: '⚡'
|
|
53
52
|
};
|
|
54
53
|
return icons[name] || '📦';
|
|
55
54
|
}
|
|
@@ -66,4 +65,4 @@ async function promptForConfiguration(initialProjectName, availableManagers) {
|
|
|
66
65
|
|
|
67
66
|
module.exports = {
|
|
68
67
|
promptForConfiguration
|
|
69
|
-
};
|
|
68
|
+
};
|
package/index.js
CHANGED
|
@@ -117,7 +117,7 @@ async function createProject() {
|
|
|
117
117
|
|
|
118
118
|
if (availableManagers.length === 0) {
|
|
119
119
|
console.log(chalk.red('❌ No compatible package managers found!'));
|
|
120
|
-
console.log(chalk.yellow('Please install npm
|
|
120
|
+
console.log(chalk.yellow('Please install npm, yarn, or pnpm.'));
|
|
121
121
|
process.exit(1);
|
|
122
122
|
}
|
|
123
123
|
|
|
@@ -187,4 +187,4 @@ program
|
|
|
187
187
|
return createProject();
|
|
188
188
|
});
|
|
189
189
|
|
|
190
|
-
program.parse();
|
|
190
|
+
program.parse();
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@enfyra/create-app",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.40",
|
|
4
4
|
"description": "Create Enfyra frontend applications with ease",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
7
|
-
"create-app": "
|
|
7
|
+
"create-app": "index.js"
|
|
8
8
|
},
|
|
9
9
|
"preferGlobal": true,
|
|
10
10
|
"engines": {
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
},
|
|
35
35
|
"repository": {
|
|
36
36
|
"type": "git",
|
|
37
|
-
"url": "https://github.com/enfyra/create-enfyra-app.git"
|
|
37
|
+
"url": "git+https://github.com/enfyra/create-enfyra-app.git"
|
|
38
38
|
},
|
|
39
39
|
"bugs": {
|
|
40
40
|
"url": "https://github.com/enfyra/create-enfyra-app/issues"
|
|
@@ -42,5 +42,11 @@
|
|
|
42
42
|
"homepage": "https://github.com/enfyra/create-enfyra-app#readme",
|
|
43
43
|
"publishConfig": {
|
|
44
44
|
"access": "public"
|
|
45
|
-
}
|
|
45
|
+
},
|
|
46
|
+
"files": [
|
|
47
|
+
"index.js",
|
|
48
|
+
"components",
|
|
49
|
+
"README.md",
|
|
50
|
+
"LICENSE"
|
|
51
|
+
]
|
|
46
52
|
}
|
package/package-lock.json
DELETED
|
@@ -1,772 +0,0 @@
|
|
|
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
|
-
}
|