mpb-localkit 1.3.1 → 1.3.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.
- package/package.json +11 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mpb-localkit",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.2",
|
|
4
4
|
"description": "Type-driven, offline-first SDK for TypeScript developers",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Erik Olsen",
|
|
@@ -53,6 +53,15 @@
|
|
|
53
53
|
"LICENSE"
|
|
54
54
|
],
|
|
55
55
|
"sideEffects": false,
|
|
56
|
+
"packageManager": "pnpm@10.14.0",
|
|
57
|
+
"scripts": {
|
|
58
|
+
"build": "tsup",
|
|
59
|
+
"prepare": "pnpm run build",
|
|
60
|
+
"typecheck": "tsc --noEmit",
|
|
61
|
+
"test": "vitest run",
|
|
62
|
+
"dev": "vitest",
|
|
63
|
+
"prepublishOnly": "pnpm run typecheck && pnpm run test && pnpm run build"
|
|
64
|
+
},
|
|
56
65
|
"dependencies": {
|
|
57
66
|
"commander": "^12.1.0",
|
|
58
67
|
"idb": "^8.0.0",
|
|
@@ -110,11 +119,5 @@
|
|
|
110
119
|
"vue": {
|
|
111
120
|
"optional": true
|
|
112
121
|
}
|
|
113
|
-
},
|
|
114
|
-
"scripts": {
|
|
115
|
-
"build": "tsup",
|
|
116
|
-
"typecheck": "tsc --noEmit",
|
|
117
|
-
"test": "vitest run",
|
|
118
|
-
"dev": "vitest"
|
|
119
122
|
}
|
|
120
|
-
}
|
|
123
|
+
}
|