@sinytra/wiki-previewer 0.1.23 → 0.1.24

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 (30) hide show
  1. package/.next/BUILD_ID +1 -1
  2. package/.next/app-build-manifest.json +20 -20
  3. package/.next/app-path-routes-manifest.json +2 -2
  4. package/.next/build-manifest.json +4 -4
  5. package/.next/prerender-manifest.json +3 -3
  6. package/.next/server/app/[locale]/(main)/project/[slug]/[version]/content/[id]/page_client-reference-manifest.js +1 -1
  7. package/.next/server/app/[locale]/(main)/project/[slug]/[version]/content/page_client-reference-manifest.js +1 -1
  8. package/.next/server/app/[locale]/(main)/project/[slug]/[version]/docs/[...path]/page_client-reference-manifest.js +1 -1
  9. package/.next/server/app/[locale]/(main)/project/[slug]/[version]/docs/page_client-reference-manifest.js +1 -1
  10. package/.next/server/app/[locale]/(main)/project/[slug]/[version]/page_client-reference-manifest.js +1 -1
  11. package/.next/server/app/[locale]/page_client-reference-manifest.js +1 -1
  12. package/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  13. package/.next/server/app/_not-found.html +2 -2
  14. package/.next/server/app/_not-found.rsc +1 -1
  15. package/.next/server/app/opengraph-image/route_client-reference-manifest.js +1 -1
  16. package/.next/server/app/robots.txt/route_client-reference-manifest.js +1 -1
  17. package/.next/server/app/sitemap.xml/route_client-reference-manifest.js +1 -1
  18. package/.next/server/app-paths-manifest.json +2 -2
  19. package/.next/server/middleware-build-manifest.js +1 -1
  20. package/.next/server/middleware-manifest.json +12 -12
  21. package/.next/server/pages/404.html +2 -2
  22. package/.next/server/pages/500.html +1 -1
  23. package/.next/server/server-reference-manifest.json +1 -1
  24. package/.next/server/src/middleware.js +2 -2
  25. package/.next/static/chunks/{main-3317b9528963fa4c.js → main-8bd2a32b24923ab4.js} +1 -1
  26. package/package.json +1 -1
  27. package/public/_meta.schema.json +0 -30
  28. package/public/sinytra-wiki.schema.json +0 -62
  29. /package/.next/static/{g7FvdiBzWLzSzX9EnHYAA → wwbDZ1UMcsOgBkgvXNF6m}/_buildManifest.js +0 -0
  30. /package/.next/static/{g7FvdiBzWLzSzX9EnHYAA → wwbDZ1UMcsOgBkgvXNF6m}/_ssgManifest.js +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sinytra/wiki-previewer",
3
- "version": "0.1.23",
3
+ "version": "0.1.24",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "wiki-previewer": "./bin/entrypoint.mjs"
@@ -1,30 +0,0 @@
1
- {
2
- "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "title": "Sinytra Wiki Folder Layout Metadata",
4
- "description": "Provides file naming information for a directory",
5
- "type": "object",
6
- "required": [],
7
- "additionalProperties": {
8
- "oneOf": [
9
- {
10
- "type": "object",
11
- "properties": {
12
- "name": {
13
- "type": "string",
14
- "description": "Page display name"
15
- },
16
- "icon": {
17
- "type": [
18
- "string",
19
- "null"
20
- ],
21
- "description": "Display icon name"
22
- }
23
- }
24
- },
25
- {
26
- "type": "string"
27
- }
28
- ]
29
- }
30
- }
@@ -1,62 +0,0 @@
1
- {
2
- "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "title": "Sinytra Wiki Documentation Metadata",
4
- "description": "Provides documentation project meta information",
5
- "type": "object",
6
- "properties": {
7
- "id": {
8
- "description": "Unique project ID that identifies the project across the wiki. We recommend using your projectid.",
9
- "type": "string",
10
- "minLength": 2,
11
- "maxLength": 126,
12
- "pattern": "^[a-z]+[a-z0-9-]+$"
13
- },
14
- "modid": {
15
- "description": "In-game modid, used to identify mod content data",
16
- "type": "string"
17
- },
18
- "platforms": {
19
- "description": "A map of your project's available distribution platforms to platform project slugs.",
20
- "type": "object",
21
- "additionalProperties": { "type": "string" }
22
- },
23
- "versions": {
24
- "description": "A map of additional minecraft versions to git branch names to make available.",
25
- "type": "object",
26
- "additionalProperties": { "type": "string" }
27
- },
28
- "platform": {
29
- "description": "Your project's distribution platform. Deprecated: use 'platforms' instead",
30
- "enum": ["curseforge", "modrinth"],
31
- "deprecated": true
32
- },
33
- "slug": {
34
- "description": "The host platform's project slug. Deprecated: use 'platforms' instead",
35
- "type": "string",
36
- "deprecated": true
37
- },
38
- "owners": {
39
- "description": "Usernames of wiki accounts authorized to register this project.",
40
- "type": "array",
41
- "items": {
42
- "type": "string"
43
- }
44
- }
45
- },
46
- "allOf": [
47
- {
48
- "required": ["id"]
49
- },
50
- {
51
- "oneOf": [
52
- {
53
- "required": ["platform", "slug"],
54
- "deprecated": true
55
- },
56
- {
57
- "required": ["platforms"]
58
- }
59
- ]
60
- }
61
- ]
62
- }