scorezilla 0.3.0-next.1 → 0.3.0-next.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/API.md +77 -7
- package/CHANGELOG.md +58 -0
- package/README.md +77 -0
- package/RECIPES.md +186 -0
- package/dist/{errors-B7hyC-C5.d.cts → errors-CtXMAHtJ.d.cts} +1 -1
- package/dist/{errors-B7hyC-C5.d.ts → errors-CtXMAHtJ.d.ts} +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/server.cjs +215 -1
- package/dist/server.cjs.map +1 -1
- package/dist/server.d.cts +249 -3
- package/dist/server.d.ts +249 -3
- package/dist/server.js +210 -2
- package/dist/server.js.map +1 -1
- package/package.json +11 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "scorezilla",
|
|
3
|
-
"version": "0.3.0-next.
|
|
3
|
+
"version": "0.3.0-next.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -114,6 +114,7 @@
|
|
|
114
114
|
"LICENSE",
|
|
115
115
|
"CHANGELOG.md",
|
|
116
116
|
"API.md",
|
|
117
|
+
"RECIPES.md",
|
|
117
118
|
"VERSIONING.md",
|
|
118
119
|
"COMPATIBILITY.md"
|
|
119
120
|
],
|
|
@@ -140,8 +141,17 @@
|
|
|
140
141
|
"changeset:version": "changeset version",
|
|
141
142
|
"prepublishOnly": "pnpm run clean && pnpm run typecheck && pnpm run test:unit && pnpm run build && pnpm run check:types-resolution && pnpm run size"
|
|
142
143
|
},
|
|
144
|
+
"peerDependencies": {
|
|
145
|
+
"jose": "^5.9.0 || ^6.0.0"
|
|
146
|
+
},
|
|
147
|
+
"peerDependenciesMeta": {
|
|
148
|
+
"jose": {
|
|
149
|
+
"optional": true
|
|
150
|
+
}
|
|
151
|
+
},
|
|
143
152
|
"devDependencies": {
|
|
144
153
|
"@arethetypeswrong/cli": "0.18.3",
|
|
154
|
+
"jose": "^6.1.0",
|
|
145
155
|
"@changesets/changelog-github": "0.7.0",
|
|
146
156
|
"@changesets/cli": "2.31.0",
|
|
147
157
|
"@eslint/js": "^9.15.0",
|