silgi 0.1.0 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3,38 +3,29 @@ import consola from 'consola';
3
3
 
4
4
  const name = "silgi";
5
5
  const type = "module";
6
- const version = "0.1.0";
6
+ const version = "0.1.2";
7
7
  const packageManager = "pnpm@9.15.1";
8
8
  const exports = {
9
9
  ".": {
10
10
  "import": {
11
- types: "./dist/index.d.mts",
11
+ types: "./dist/index.d.ts",
12
12
  "default": "./dist/index.mjs"
13
13
  }
14
14
  },
15
15
  "./config": {
16
- types: "./dist/cli/config.d.mts",
16
+ types: "./dist/cli/config.d.ts",
17
17
  "import": "./dist/cli/config.mjs"
18
18
  },
19
19
  "./ecosystem/nitro": {
20
- types: "./dist/ecosystem/nitro/index.d.mts",
21
- "import": "./dist/ecosystem/nitro/index.mjs"
20
+ types: "./dist/ecosystem/nitro/module.d.ts",
21
+ "import": "./dist/ecosystem/nitro/module.mjs"
22
+ },
23
+ "./ecosystem/nitro/module": {
24
+ types: "./dist/ecosystem/nitro/module.d.ts",
25
+ "import": "./dist/ecosystem/nitro/module.mjs"
22
26
  }
23
27
  };
24
28
  const types = "./dist/index.d.ts";
25
- const typesVersions = {
26
- "*": {
27
- "*": [
28
- "./dist/*"
29
- ],
30
- "modules/*": [
31
- "./dist/modules/*"
32
- ],
33
- config: [
34
- "./dist/cli/config"
35
- ]
36
- }
37
- };
38
29
  const bin = {
39
30
  silgi: "bin/silgi.mjs"
40
31
  };
@@ -105,7 +96,6 @@ const packageJson = {
105
96
  packageManager: packageManager,
106
97
  exports: exports,
107
98
  types: types,
108
- typesVersions: typesVersions,
109
99
  bin: bin,
110
100
  files: files,
111
101
  scripts: scripts,
package/package.json CHANGED
@@ -1,37 +1,28 @@
1
1
  {
2
2
  "name": "silgi",
3
3
  "type": "module",
4
- "version": "0.1.0",
4
+ "version": "0.1.2",
5
5
  "exports": {
6
6
  ".": {
7
7
  "import": {
8
- "types": "./dist/index.d.mts",
8
+ "types": "./dist/index.d.ts",
9
9
  "default": "./dist/index.mjs"
10
10
  }
11
11
  },
12
12
  "./config": {
13
- "types": "./dist/cli/config.d.mts",
13
+ "types": "./dist/cli/config.d.ts",
14
14
  "import": "./dist/cli/config.mjs"
15
15
  },
16
16
  "./ecosystem/nitro": {
17
- "types": "./dist/ecosystem/nitro/index.d.mts",
18
- "import": "./dist/ecosystem/nitro/index.mjs"
17
+ "types": "./dist/ecosystem/nitro/module.d.ts",
18
+ "import": "./dist/ecosystem/nitro/module.mjs"
19
+ },
20
+ "./ecosystem/nitro/module": {
21
+ "types": "./dist/ecosystem/nitro/module.d.ts",
22
+ "import": "./dist/ecosystem/nitro/module.mjs"
19
23
  }
20
24
  },
21
25
  "types": "./dist/index.d.ts",
22
- "typesVersions": {
23
- "*": {
24
- "*": [
25
- "./dist/*"
26
- ],
27
- "modules/*": [
28
- "./dist/modules/*"
29
- ],
30
- "config": [
31
- "./dist/cli/config"
32
- ]
33
- }
34
- },
35
26
  "bin": {
36
27
  "silgi": "bin/silgi.mjs"
37
28
  },
File without changes