@scalar/sveltekit 0.1.28 → 0.1.30

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.
Files changed (2) hide show
  1. package/README.md +18 -7
  2. package/package.json +18 -3
package/README.md CHANGED
@@ -1,19 +1,30 @@
1
- # Scalar for SvelteKit
2
-
3
- [![Version](https://img.shields.io/npm/v/%40scalar/sveltekit)](https://www.npmjs.com/package/@scalar/sveltekit)
4
- [![Downloads](https://img.shields.io/npm/dm/%40scalar/sveltekit)](https://www.npmjs.com/package/@scalar/sveltekit)
5
- [![License](https://img.shields.io/npm/l/%40scalar%2Fsveltekit)](https://www.npmjs.com/package/@scalar/sveltekit)
1
+ <!--
2
+ This file is auto-generated by the Scalar README generator.
3
+ Command: pnpm --filter @scalar-internal/build-scripts start generate-readme
4
+
5
+ Do not edit this file manually. Changes will be lost when the file is regenerated.
6
+ -->
7
+
8
+ # Scalar API Reference for SvelteKit
9
+
10
+ [![Version](https://img.shields.io/npm/v/@scalar/sveltekit)](https://www.npmjs.com/package/@scalar/sveltekit)
11
+ [![Downloads](https://img.shields.io/npm/dm/@scalar/sveltekit)](https://www.npmjs.com/package/@scalar/sveltekit)
12
+ [![License](https://img.shields.io/npm/l/@scalar/sveltekit)](https://www.npmjs.com/package/@scalar/sveltekit)
6
13
  [![Discord](https://img.shields.io/discord/1135330207960678410?style=flat&color=5865F2)](https://discord.gg/scalar)
7
14
 
8
- A SvelteKit integration for the Scalar API Reference
15
+ SvelteKit server handler to serve beautiful, interactive API documentation from OpenAPI/Swagger documents.
9
16
 
10
17
  ## Documentation
11
18
 
12
19
  [Read the documentation here](https://guides.scalar.com/scalar/scalar-api-references/integrations/sveltekit)
13
20
 
21
+ ## Changelog
22
+
23
+ See [CHANGELOG.md](https://github.com/scalar/scalar/blob/main/integrations/sveltekit/CHANGELOG.md) for a list of changes.
24
+
14
25
  ## Community
15
26
 
16
- We are API nerds. You too? Let's chat on Discord: <https://discord.gg/scalar>
27
+ We are API nerds. You too? Lets chat on Discord: <https://discord.gg/scalar>
17
28
 
18
29
  ## License
19
30
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scalar/sveltekit",
3
- "description": "A SvelteKit server handler to render API references from an OpenAPI file",
3
+ "description": "SvelteKit server handler to serve beautiful, interactive API documentation from OpenAPI/Swagger documents.",
4
4
  "license": "MIT",
5
5
  "author": "Scalar (https://github.com/scalar)",
6
6
  "homepage": "https://github.com/scalar/scalar",
@@ -18,7 +18,7 @@
18
18
  "openapi",
19
19
  "swagger"
20
20
  ],
21
- "version": "0.1.28",
21
+ "version": "0.1.30",
22
22
  "engines": {
23
23
  "node": ">=20"
24
24
  },
@@ -38,12 +38,27 @@
38
38
  "!src/**/*.test.*",
39
39
  "!src/**/*.spec.*"
40
40
  ],
41
+ "readme": {
42
+ "title": "Scalar API Reference for SvelteKit",
43
+ "badges": [
44
+ {
45
+ "type": "npm-version"
46
+ },
47
+ {
48
+ "type": "npm-downloads"
49
+ },
50
+ {
51
+ "type": "npm-license"
52
+ }
53
+ ],
54
+ "documentation": "https://guides.scalar.com/scalar/scalar-api-references/integrations/sveltekit"
55
+ },
41
56
  "sideEffects": [
42
57
  "**/*.css"
43
58
  ],
44
59
  "svelte": "./dist/index.js",
45
60
  "dependencies": {
46
- "@scalar/core": "0.3.22"
61
+ "@scalar/core": "0.3.24"
47
62
  },
48
63
  "devDependencies": {
49
64
  "@sveltejs/kit": "^2.25.0",