@meistrari/vault-sdk 3.4.0 → 3.4.1
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/index.cjs +3 -12
- package/dist/index.mjs +3 -12
- package/package.json +3 -11
package/dist/index.cjs
CHANGED
|
@@ -137,7 +137,7 @@ function getFileName(content) {
|
|
|
137
137
|
}
|
|
138
138
|
|
|
139
139
|
const name = "@meistrari/vault-sdk";
|
|
140
|
-
const version = "3.4.
|
|
140
|
+
const version = "3.4.1";
|
|
141
141
|
const license = "UNLICENSED";
|
|
142
142
|
const repository = {
|
|
143
143
|
type: "git",
|
|
@@ -155,17 +155,9 @@ const types = "dist/index.d.ts";
|
|
|
155
155
|
const files = [
|
|
156
156
|
"dist"
|
|
157
157
|
];
|
|
158
|
-
const scripts = {
|
|
159
|
-
test: "vitest --no-watch",
|
|
160
|
-
"test:watch": "vitest",
|
|
161
|
-
build: "unbuild",
|
|
162
|
-
lint: "eslint .",
|
|
163
|
-
"lint:fix": "eslint . --fix",
|
|
164
|
-
check: "bun run lint && bun tsc --noEmit"
|
|
165
|
-
};
|
|
166
158
|
const dependencies = {
|
|
167
|
-
"@meistrari/file-type": "22.0.0",
|
|
168
|
-
"@meistrari/vault-shared": "0.2.
|
|
159
|
+
"@meistrari/file-type": "^22.0.0",
|
|
160
|
+
"@meistrari/vault-shared": "0.2.1",
|
|
169
161
|
"mime-types": "3.0.1",
|
|
170
162
|
ofetch: "1.4.1",
|
|
171
163
|
zod: "4.3.6"
|
|
@@ -192,7 +184,6 @@ const packageJson = {
|
|
|
192
184
|
main: main,
|
|
193
185
|
types: types,
|
|
194
186
|
files: files,
|
|
195
|
-
scripts: scripts,
|
|
196
187
|
dependencies: dependencies,
|
|
197
188
|
devDependencies: devDependencies,
|
|
198
189
|
peerDependencies: peerDependencies,
|
package/dist/index.mjs
CHANGED
|
@@ -131,7 +131,7 @@ function getFileName(content) {
|
|
|
131
131
|
}
|
|
132
132
|
|
|
133
133
|
const name = "@meistrari/vault-sdk";
|
|
134
|
-
const version = "3.4.
|
|
134
|
+
const version = "3.4.1";
|
|
135
135
|
const license = "UNLICENSED";
|
|
136
136
|
const repository = {
|
|
137
137
|
type: "git",
|
|
@@ -149,17 +149,9 @@ const types = "dist/index.d.ts";
|
|
|
149
149
|
const files = [
|
|
150
150
|
"dist"
|
|
151
151
|
];
|
|
152
|
-
const scripts = {
|
|
153
|
-
test: "vitest --no-watch",
|
|
154
|
-
"test:watch": "vitest",
|
|
155
|
-
build: "unbuild",
|
|
156
|
-
lint: "eslint .",
|
|
157
|
-
"lint:fix": "eslint . --fix",
|
|
158
|
-
check: "bun run lint && bun tsc --noEmit"
|
|
159
|
-
};
|
|
160
152
|
const dependencies = {
|
|
161
|
-
"@meistrari/file-type": "22.0.0",
|
|
162
|
-
"@meistrari/vault-shared": "0.2.
|
|
153
|
+
"@meistrari/file-type": "^22.0.0",
|
|
154
|
+
"@meistrari/vault-shared": "0.2.1",
|
|
163
155
|
"mime-types": "3.0.1",
|
|
164
156
|
ofetch: "1.4.1",
|
|
165
157
|
zod: "4.3.6"
|
|
@@ -186,7 +178,6 @@ const packageJson = {
|
|
|
186
178
|
main: main,
|
|
187
179
|
types: types,
|
|
188
180
|
files: files,
|
|
189
|
-
scripts: scripts,
|
|
190
181
|
dependencies: dependencies,
|
|
191
182
|
devDependencies: devDependencies,
|
|
192
183
|
peerDependencies: peerDependencies,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meistrari/vault-sdk",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.1",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -18,17 +18,9 @@
|
|
|
18
18
|
"files": [
|
|
19
19
|
"dist"
|
|
20
20
|
],
|
|
21
|
-
"scripts": {
|
|
22
|
-
"test": "vitest --no-watch",
|
|
23
|
-
"test:watch": "vitest",
|
|
24
|
-
"build": "unbuild",
|
|
25
|
-
"lint": "eslint .",
|
|
26
|
-
"lint:fix": "eslint . --fix",
|
|
27
|
-
"check": "bun run lint && bun tsc --noEmit"
|
|
28
|
-
},
|
|
29
21
|
"dependencies": {
|
|
30
|
-
"@meistrari/file-type": "22.0.0",
|
|
31
|
-
"@meistrari/vault-shared": "0.2.
|
|
22
|
+
"@meistrari/file-type": "^22.0.0",
|
|
23
|
+
"@meistrari/vault-shared": "0.2.1",
|
|
32
24
|
"mime-types": "3.0.1",
|
|
33
25
|
"ofetch": "1.4.1",
|
|
34
26
|
"zod": "4.3.6"
|