@travetto/doc 8.0.0-alpha.22 → 8.0.0-alpha.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.
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@travetto/doc",
3
- "version": "8.0.0-alpha.22",
3
+ "version": "8.0.0-alpha.24",
4
+ "private": false,
4
5
  "description": "Documentation support for the Travetto framework",
5
6
  "keywords": [
6
7
  "docs",
@@ -10,8 +11,12 @@
10
11
  "homepage": "https://travetto.io",
11
12
  "license": "MIT",
12
13
  "author": {
13
- "email": "travetto.framework@gmail.com",
14
- "name": "Travetto Framework"
14
+ "name": "Travetto Framework",
15
+ "email": "travetto.framework@gmail.com"
16
+ },
17
+ "repository": {
18
+ "url": "git+https://github.com/travetto/travetto.git",
19
+ "directory": "module/doc"
15
20
  },
16
21
  "files": [
17
22
  "__index__.ts",
@@ -19,19 +24,18 @@
19
24
  "support"
20
25
  ],
21
26
  "main": "__index__.ts",
22
- "repository": {
23
- "url": "git+https://github.com/travetto/travetto.git",
24
- "directory": "module/doc"
27
+ "publishConfig": {
28
+ "access": "public"
25
29
  },
26
30
  "dependencies": {
27
- "@travetto/runtime": "^8.0.0-alpha.22",
28
- "@types/markdown-it": "^14.1.2",
31
+ "@travetto/runtime": "^8.0.0-alpha.24",
32
+ "@types/markdown-it": "^14.2.0",
29
33
  "@types/prismjs": "^1.26.6",
30
- "markdown-it": "^14.3.0",
34
+ "markdown-it": "^15.0.0",
31
35
  "prismjs": "^1.30.0"
32
36
  },
33
37
  "peerDependencies": {
34
- "@travetto/cli": "^8.0.0-alpha.30"
38
+ "@travetto/cli": "^8.0.0-alpha.33"
35
39
  },
36
40
  "peerDependenciesMeta": {
37
41
  "@travetto/cli": {
@@ -44,9 +48,5 @@
44
48
  ],
45
49
  "workspaceInclude": true,
46
50
  "displayName": "Documentation"
47
- },
48
- "private": false,
49
- "publishConfig": {
50
- "access": "public"
51
51
  }
52
52
  }
@@ -7,7 +7,9 @@ export const LIBRARIES = {
7
7
  Npm: { title: 'Npm', href: 'https://docs.npmjs.com/downloading-and-installing-node-js-and-npm' },
8
8
  Yarn: { title: 'Yarn', href: 'https://yarnpkg.com' },
9
9
  Pnpm: { title: 'Pnpm', href: 'https://pnpm.io/' },
10
- Biome: { title: 'Biome', href: 'https://biomejs.dev/' },
10
+ Oxlint: { title: 'Oxlint', href: 'https://oxc.rs/docs/guide/usage/linter.html' },
11
+ Oxfmt: { title: 'Oxfmt', href: 'https://oxc.rs/docs/guide/usage/formatter.html' },
12
+ CSpell: { title: 'CSpell', href: 'https://cspell.org' },
11
13
  Rollup: { title: 'Rollup', href: 'https://rollupjs.org/' },
12
14
  TSConfig: { title: 'TS Config', href: 'https://www.typescriptlang.org/docs/handbook/tsconfig-json.html' },
13
15
 
@@ -80,7 +82,6 @@ export const LIBRARIES = {
80
82
 
81
83
  // JWT
82
84
  JWT: { title: 'JWT', href: 'https://jwt.io/' },
83
- NJWT: { title: 'njwt', href: 'https://github.com/jwtk/njwt' },
84
85
 
85
86
  // Email
86
87
  NodeMailer: { title: 'nodemailer', href: 'https://nodemailer.com/about/' },
@@ -90,8 +91,6 @@ export const LIBRARIES = {
90
91
 
91
92
  // Image
92
93
  ImageMagick: { title: 'ImageMagick', href: 'https://imagemagick.org/index.php' },
93
- PngQuant: { title: 'pngquant', href: 'https://pngquant.org/' },
94
- JpegOptim: { title: 'Jpegoptim', href: 'https://github.com/tjko/jpegoptim' },
95
94
  Sharp: { title: 'sharp', href: 'https://sharp.pixelplumbing.com/' },
96
95
 
97
96
  // Dbs
@@ -1,5 +1,4 @@
1
1
  import { default as prismJs } from 'prismjs';
2
-
3
2
  import 'prismjs/plugins/normalize-whitespace/prism-normalize-whitespace.js';
4
3
  import 'prismjs/components/prism-typescript.js';
5
4
  import 'prismjs/components/prism-javascript.js';
@@ -1,17 +1,16 @@
1
1
  declare namespace PrismAlt {
2
- export interface Grammar { }
3
- export const languages: { [language: string]: Grammar; };
4
- export const plugins: Record<string, {
5
- setDefaults(config: Record<string, unknown>): void;
6
- normalize(text: string, config?: unknown): string;
7
- }>;
8
- export function highlight(
9
- text: string,
10
- grammar: Grammar,
11
- language: string
12
- ): string;
2
+ export interface Grammar {}
3
+ export const languages: { [language: string]: Grammar };
4
+ export const plugins: Record<
5
+ string,
6
+ {
7
+ setDefaults(config: Record<string, unknown>): void;
8
+ normalize(text: string, config?: unknown): string;
9
+ }
10
+ >;
11
+ export function highlight(text: string, grammar: Grammar, language: string): string;
13
12
  }
14
13
 
15
- declare module "prismjs" {
14
+ declare module 'prismjs' {
16
15
  export default PrismAlt;
17
- }
16
+ }