silgi 0.9.26 → 0.9.27
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/dist/_chunks/index.mjs +49 -2
- package/dist/cli/prepare.mjs +2 -2
- package/dist/meta/index.d.mts +49 -2
- package/dist/meta/index.d.ts +49 -2
- package/dist/meta/index.mjs +1 -1
- package/package.json +1 -1
package/dist/_chunks/index.mjs
CHANGED
|
@@ -1,4 +1,51 @@
|
|
|
1
|
-
const version = "0.9.
|
|
1
|
+
const version = "0.9.27";
|
|
2
|
+
const peerDependencies = {
|
|
3
|
+
"@fastify/deepmerge": "^2.0.2",
|
|
4
|
+
"@nuxt/kit": "^3.15.3",
|
|
5
|
+
"@nuxt/schema": "^3.15.4",
|
|
6
|
+
h3: "^1.14.0",
|
|
7
|
+
nitropack: "^2.10.4",
|
|
8
|
+
nuxt: "^3.15.3",
|
|
9
|
+
typescript: "^5.7.3",
|
|
10
|
+
vue: "^3.5.13",
|
|
11
|
+
zod: "^3.24.1"
|
|
12
|
+
};
|
|
13
|
+
const dependencies = {
|
|
14
|
+
"@clack/prompts": "^0.10.0",
|
|
15
|
+
"@fastify/deepmerge": "^2.0.2",
|
|
16
|
+
"@oxc-parser/wasm": "^0.49.0",
|
|
17
|
+
"@standard-schema/spec": "^1.0.0",
|
|
18
|
+
c12: "^2.0.4",
|
|
19
|
+
chokidar: "^4.0.3",
|
|
20
|
+
citty: "^0.1.6",
|
|
21
|
+
compatx: "^0.1.8",
|
|
22
|
+
consola: "^3.4.0",
|
|
23
|
+
defu: "^6.1.4",
|
|
24
|
+
destr: "^2.0.3",
|
|
25
|
+
"dev-jiti": "^2.4.2",
|
|
26
|
+
"dot-prop": "^9.0.0",
|
|
27
|
+
dotenv: "^16.4.7",
|
|
28
|
+
"escape-string-regexp": "^5.0.0",
|
|
29
|
+
globby: "^14.1.0",
|
|
30
|
+
hookable: "^5.5.3",
|
|
31
|
+
ignore: "^7.0.3",
|
|
32
|
+
klona: "^2.0.6",
|
|
33
|
+
knitwork: "^1.2.0",
|
|
34
|
+
mlly: "^1.7.4",
|
|
35
|
+
ofetch: "^1.4.1",
|
|
36
|
+
ohash: "^1.1.4",
|
|
37
|
+
pathe: "^2.0.3",
|
|
38
|
+
picocolors: "^1.1.1",
|
|
39
|
+
"pkg-types": "^1.3.1",
|
|
40
|
+
scule: "^1.3.0",
|
|
41
|
+
semver: "^7.7.1",
|
|
42
|
+
"std-env": "^3.8.0",
|
|
43
|
+
ufo: "^1.5.4",
|
|
44
|
+
unctx: "^2.4.1",
|
|
45
|
+
unimport: "^4.1.2",
|
|
46
|
+
unstorage: "^1.15.0",
|
|
47
|
+
untyped: "^1.5.2"
|
|
48
|
+
};
|
|
2
49
|
const devDependencies = {
|
|
3
50
|
"@antfu/eslint-config": "^4.3.0",
|
|
4
51
|
"@nuxt/kit": "^3.15.4",
|
|
@@ -19,4 +66,4 @@ const devDependencies = {
|
|
|
19
66
|
const packageJson = {
|
|
20
67
|
version: version};
|
|
21
68
|
|
|
22
|
-
export { devDependencies as d, packageJson as p, version as v };
|
|
69
|
+
export { devDependencies as a, peerDependencies as b, dependencies as d, packageJson as p, version as v };
|
package/dist/cli/prepare.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { defineCommand } from 'citty';
|
|
2
2
|
import consola, { consola as consola$1 } from 'consola';
|
|
3
3
|
import { resolve, isAbsolute, relative, join, dirname, basename, extname } from 'pathe';
|
|
4
|
-
import {
|
|
4
|
+
import { peerDependencies, version } from 'silgi/meta';
|
|
5
5
|
import { promises, existsSync, readFileSync, writeFileSync, mkdirSync } from 'node:fs';
|
|
6
6
|
import { readdir } from 'node:fs/promises';
|
|
7
7
|
import { resolvePath, parseNodeModulePath, lookupNodeModuleSubpath, resolveModuleExportNames, resolve as resolve$1 } from 'mlly';
|
|
@@ -1750,7 +1750,7 @@ async function commands(silgi) {
|
|
|
1750
1750
|
async function installPackages(silgi) {
|
|
1751
1751
|
const packages = {
|
|
1752
1752
|
dependencies: {
|
|
1753
|
-
"@fastify/deepmerge":
|
|
1753
|
+
"@fastify/deepmerge": peerDependencies["@fastify/deepmerge"],
|
|
1754
1754
|
...silgi.options.installPackages?.dependencies
|
|
1755
1755
|
},
|
|
1756
1756
|
devDependencies: {
|
package/dist/meta/index.d.mts
CHANGED
|
@@ -1,4 +1,51 @@
|
|
|
1
|
-
const version = "0.9.
|
|
1
|
+
const version = "0.9.27";
|
|
2
|
+
const peerDependencies = {
|
|
3
|
+
"@fastify/deepmerge": "^2.0.2",
|
|
4
|
+
"@nuxt/kit": "^3.15.3",
|
|
5
|
+
"@nuxt/schema": "^3.15.4",
|
|
6
|
+
h3: "^1.14.0",
|
|
7
|
+
nitropack: "^2.10.4",
|
|
8
|
+
nuxt: "^3.15.3",
|
|
9
|
+
typescript: "^5.7.3",
|
|
10
|
+
vue: "^3.5.13",
|
|
11
|
+
zod: "^3.24.1"
|
|
12
|
+
};
|
|
13
|
+
const dependencies = {
|
|
14
|
+
"@clack/prompts": "^0.10.0",
|
|
15
|
+
"@fastify/deepmerge": "^2.0.2",
|
|
16
|
+
"@oxc-parser/wasm": "^0.49.0",
|
|
17
|
+
"@standard-schema/spec": "^1.0.0",
|
|
18
|
+
c12: "^2.0.4",
|
|
19
|
+
chokidar: "^4.0.3",
|
|
20
|
+
citty: "^0.1.6",
|
|
21
|
+
compatx: "^0.1.8",
|
|
22
|
+
consola: "^3.4.0",
|
|
23
|
+
defu: "^6.1.4",
|
|
24
|
+
destr: "^2.0.3",
|
|
25
|
+
"dev-jiti": "^2.4.2",
|
|
26
|
+
"dot-prop": "^9.0.0",
|
|
27
|
+
dotenv: "^16.4.7",
|
|
28
|
+
"escape-string-regexp": "^5.0.0",
|
|
29
|
+
globby: "^14.1.0",
|
|
30
|
+
hookable: "^5.5.3",
|
|
31
|
+
ignore: "^7.0.3",
|
|
32
|
+
klona: "^2.0.6",
|
|
33
|
+
knitwork: "^1.2.0",
|
|
34
|
+
mlly: "^1.7.4",
|
|
35
|
+
ofetch: "^1.4.1",
|
|
36
|
+
ohash: "^1.1.4",
|
|
37
|
+
pathe: "^2.0.3",
|
|
38
|
+
picocolors: "^1.1.1",
|
|
39
|
+
"pkg-types": "^1.3.1",
|
|
40
|
+
scule: "^1.3.0",
|
|
41
|
+
semver: "^7.7.1",
|
|
42
|
+
"std-env": "^3.8.0",
|
|
43
|
+
ufo: "^1.5.4",
|
|
44
|
+
unctx: "^2.4.1",
|
|
45
|
+
unimport: "^4.1.2",
|
|
46
|
+
unstorage: "^1.15.0",
|
|
47
|
+
untyped: "^1.5.2"
|
|
48
|
+
};
|
|
2
49
|
const devDependencies = {
|
|
3
50
|
"@antfu/eslint-config": "^4.3.0",
|
|
4
51
|
"@nuxt/kit": "^3.15.4",
|
|
@@ -17,4 +64,4 @@ const devDependencies = {
|
|
|
17
64
|
zod: "^3.24.2"
|
|
18
65
|
};
|
|
19
66
|
|
|
20
|
-
export { devDependencies, version };
|
|
67
|
+
export { dependencies, devDependencies, peerDependencies, version };
|
package/dist/meta/index.d.ts
CHANGED
|
@@ -1,4 +1,51 @@
|
|
|
1
|
-
const version = "0.9.
|
|
1
|
+
const version = "0.9.27";
|
|
2
|
+
const peerDependencies = {
|
|
3
|
+
"@fastify/deepmerge": "^2.0.2",
|
|
4
|
+
"@nuxt/kit": "^3.15.3",
|
|
5
|
+
"@nuxt/schema": "^3.15.4",
|
|
6
|
+
h3: "^1.14.0",
|
|
7
|
+
nitropack: "^2.10.4",
|
|
8
|
+
nuxt: "^3.15.3",
|
|
9
|
+
typescript: "^5.7.3",
|
|
10
|
+
vue: "^3.5.13",
|
|
11
|
+
zod: "^3.24.1"
|
|
12
|
+
};
|
|
13
|
+
const dependencies = {
|
|
14
|
+
"@clack/prompts": "^0.10.0",
|
|
15
|
+
"@fastify/deepmerge": "^2.0.2",
|
|
16
|
+
"@oxc-parser/wasm": "^0.49.0",
|
|
17
|
+
"@standard-schema/spec": "^1.0.0",
|
|
18
|
+
c12: "^2.0.4",
|
|
19
|
+
chokidar: "^4.0.3",
|
|
20
|
+
citty: "^0.1.6",
|
|
21
|
+
compatx: "^0.1.8",
|
|
22
|
+
consola: "^3.4.0",
|
|
23
|
+
defu: "^6.1.4",
|
|
24
|
+
destr: "^2.0.3",
|
|
25
|
+
"dev-jiti": "^2.4.2",
|
|
26
|
+
"dot-prop": "^9.0.0",
|
|
27
|
+
dotenv: "^16.4.7",
|
|
28
|
+
"escape-string-regexp": "^5.0.0",
|
|
29
|
+
globby: "^14.1.0",
|
|
30
|
+
hookable: "^5.5.3",
|
|
31
|
+
ignore: "^7.0.3",
|
|
32
|
+
klona: "^2.0.6",
|
|
33
|
+
knitwork: "^1.2.0",
|
|
34
|
+
mlly: "^1.7.4",
|
|
35
|
+
ofetch: "^1.4.1",
|
|
36
|
+
ohash: "^1.1.4",
|
|
37
|
+
pathe: "^2.0.3",
|
|
38
|
+
picocolors: "^1.1.1",
|
|
39
|
+
"pkg-types": "^1.3.1",
|
|
40
|
+
scule: "^1.3.0",
|
|
41
|
+
semver: "^7.7.1",
|
|
42
|
+
"std-env": "^3.8.0",
|
|
43
|
+
ufo: "^1.5.4",
|
|
44
|
+
unctx: "^2.4.1",
|
|
45
|
+
unimport: "^4.1.2",
|
|
46
|
+
unstorage: "^1.15.0",
|
|
47
|
+
untyped: "^1.5.2"
|
|
48
|
+
};
|
|
2
49
|
const devDependencies = {
|
|
3
50
|
"@antfu/eslint-config": "^4.3.0",
|
|
4
51
|
"@nuxt/kit": "^3.15.4",
|
|
@@ -17,4 +64,4 @@ const devDependencies = {
|
|
|
17
64
|
zod: "^3.24.2"
|
|
18
65
|
};
|
|
19
66
|
|
|
20
|
-
export { devDependencies, version };
|
|
67
|
+
export { dependencies, devDependencies, peerDependencies, version };
|
package/dist/meta/index.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { d as devDependencies, v as version } from '../_chunks/index.mjs';
|
|
1
|
+
export { d as dependencies, a as devDependencies, b as peerDependencies, v as version } from '../_chunks/index.mjs';
|