silgi 0.0.2 → 0.0.4
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/bin/silgi.mjs +1 -1
- package/dist/cli/index.mjs +4 -2
- package/package.json +13 -3
package/bin/silgi.mjs
CHANGED
package/dist/cli/index.mjs
CHANGED
|
@@ -3,7 +3,7 @@ import consola from 'consola';
|
|
|
3
3
|
|
|
4
4
|
const name = "silgi";
|
|
5
5
|
const type = "module";
|
|
6
|
-
const version = "0.0.
|
|
6
|
+
const version = "0.0.3";
|
|
7
7
|
const exports = {
|
|
8
8
|
".": {
|
|
9
9
|
"import": {
|
|
@@ -29,7 +29,9 @@ const bin = {
|
|
|
29
29
|
silgi: "bin/silgi.mjs"
|
|
30
30
|
};
|
|
31
31
|
const files = [
|
|
32
|
-
"
|
|
32
|
+
"bin",
|
|
33
|
+
"dist",
|
|
34
|
+
"package.json"
|
|
33
35
|
];
|
|
34
36
|
const scripts = {
|
|
35
37
|
build: "unbuild",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "silgi",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.4",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
7
7
|
"import": {
|
|
@@ -23,11 +23,21 @@
|
|
|
23
23
|
}
|
|
24
24
|
},
|
|
25
25
|
"types": "./dist/index.d.ts",
|
|
26
|
+
"typesVersions": {
|
|
27
|
+
"*": {
|
|
28
|
+
"*": [
|
|
29
|
+
"./dist/*",
|
|
30
|
+
"./*"
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
},
|
|
26
34
|
"bin": {
|
|
27
35
|
"silgi": "bin/silgi.mjs"
|
|
28
36
|
},
|
|
29
37
|
"files": [
|
|
30
|
-
"
|
|
38
|
+
"bin",
|
|
39
|
+
"dist",
|
|
40
|
+
"package.json"
|
|
31
41
|
],
|
|
32
42
|
"dependencies": {
|
|
33
43
|
"@anatine/zod-openapi": "^2.2.6",
|
|
@@ -51,7 +61,7 @@
|
|
|
51
61
|
},
|
|
52
62
|
"devDependencies": {
|
|
53
63
|
"unbuild": "^3.0.1",
|
|
54
|
-
"silgi": "0.0.
|
|
64
|
+
"silgi": "0.0.4"
|
|
55
65
|
},
|
|
56
66
|
"resolutions": {
|
|
57
67
|
"silgi": "workspace:*"
|