silgi 0.8.12 → 0.8.14

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.
@@ -1,5 +1,23 @@
1
- const version = "0.8.12";
1
+ const version = "0.8.14";
2
+ const devDependencies = {
3
+ "@antfu/eslint-config": "^4.2.0",
4
+ "@fastify/deepmerge": "^2.0.2",
5
+ "@nuxt/kit": "^3.15.4",
6
+ "@nuxt/schema": "^3.15.4",
7
+ "@types/node": "^22.13.1",
8
+ "@types/semver": "^7.5.8",
9
+ "@vitest/coverage-v8": "3.0.5",
10
+ eslint: "^9.20.0",
11
+ h3: "^1.15.0",
12
+ nitropack: "^2.10.4",
13
+ nuxt: "^3.15.4",
14
+ typescript: "^5.7.3",
15
+ unbuild: "^3.3.1",
16
+ vitest: "^3.0.5",
17
+ vue: "^3.5.13",
18
+ zod: "^3.24.1"
19
+ };
2
20
  const packageJson = {
3
21
  version: version};
4
22
 
5
- export { packageJson as p, version as v };
23
+ export { devDependencies as d, packageJson as p, version as v };
@@ -1,3 +1,21 @@
1
- const version = "0.8.12";
1
+ const version = "0.8.14";
2
+ const devDependencies = {
3
+ "@antfu/eslint-config": "^4.2.0",
4
+ "@fastify/deepmerge": "^2.0.2",
5
+ "@nuxt/kit": "^3.15.4",
6
+ "@nuxt/schema": "^3.15.4",
7
+ "@types/node": "^22.13.1",
8
+ "@types/semver": "^7.5.8",
9
+ "@vitest/coverage-v8": "3.0.5",
10
+ eslint: "^9.20.0",
11
+ h3: "^1.15.0",
12
+ nitropack: "^2.10.4",
13
+ nuxt: "^3.15.4",
14
+ typescript: "^5.7.3",
15
+ unbuild: "^3.3.1",
16
+ vitest: "^3.0.5",
17
+ vue: "^3.5.13",
18
+ zod: "^3.24.1"
19
+ };
2
20
 
3
- export { version };
21
+ export { devDependencies, version };
@@ -1,3 +1,21 @@
1
- const version = "0.8.12";
1
+ const version = "0.8.14";
2
+ const devDependencies = {
3
+ "@antfu/eslint-config": "^4.2.0",
4
+ "@fastify/deepmerge": "^2.0.2",
5
+ "@nuxt/kit": "^3.15.4",
6
+ "@nuxt/schema": "^3.15.4",
7
+ "@types/node": "^22.13.1",
8
+ "@types/semver": "^7.5.8",
9
+ "@vitest/coverage-v8": "3.0.5",
10
+ eslint: "^9.20.0",
11
+ h3: "^1.15.0",
12
+ nitropack: "^2.10.4",
13
+ nuxt: "^3.15.4",
14
+ typescript: "^5.7.3",
15
+ unbuild: "^3.3.1",
16
+ vitest: "^3.0.5",
17
+ vue: "^3.5.13",
18
+ zod: "^3.24.1"
19
+ };
2
20
 
3
- export { version };
21
+ export { devDependencies, version };
@@ -1 +1 @@
1
- export { v as version } from '../_chunks/index.mjs';
1
+ export { d as devDependencies, v as version } from '../_chunks/index.mjs';
@@ -356,7 +356,7 @@ interface SilgiCLIHooks extends SilgiHooks {
356
356
  handler: string;
357
357
  description?: string;
358
358
  }>>) => HookResult;
359
- 'prepare:installPackages': (packages: Record<string, Record<string, string>>) => HookResult;
359
+ 'prepare:installPackages': (packages: Record<'dependencies' | 'devDependencies', Record<string, string>>) => HookResult;
360
360
  }
361
361
 
362
362
  /**
@@ -737,7 +737,7 @@ interface SilgiCLIOptions extends PresetOptions {
737
737
  handler: string;
738
738
  description?: string;
739
739
  }>>;
740
- installPackages: Record<string, Record<string, string>>;
740
+ installPackages: Record<'dependencies' | 'devDependencies', Record<string, string>>;
741
741
  }
742
742
  /**
743
743
  * Silgi input config (silgi.config)
@@ -356,7 +356,7 @@ interface SilgiCLIHooks extends SilgiHooks {
356
356
  handler: string;
357
357
  description?: string;
358
358
  }>>) => HookResult;
359
- 'prepare:installPackages': (packages: Record<string, Record<string, string>>) => HookResult;
359
+ 'prepare:installPackages': (packages: Record<'dependencies' | 'devDependencies', Record<string, string>>) => HookResult;
360
360
  }
361
361
 
362
362
  /**
@@ -737,7 +737,7 @@ interface SilgiCLIOptions extends PresetOptions {
737
737
  handler: string;
738
738
  description?: string;
739
739
  }>>;
740
- installPackages: Record<string, Record<string, string>>;
740
+ installPackages: Record<'dependencies' | 'devDependencies', Record<string, string>>;
741
741
  }
742
742
  /**
743
743
  * Silgi input config (silgi.config)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "silgi",
3
3
  "type": "module",
4
- "version": "0.8.12",
4
+ "version": "0.8.14",
5
5
  "private": false,
6
6
  "sideEffects": false,
7
7
  "exports": {
@@ -144,6 +144,7 @@
144
144
  },
145
145
  "devDependencies": {
146
146
  "@antfu/eslint-config": "^4.2.0",
147
+ "@fastify/deepmerge": "^2.0.2",
147
148
  "@nuxt/kit": "^3.15.4",
148
149
  "@nuxt/schema": "^3.15.4",
149
150
  "@types/node": "^22.13.1",