Skip to content

Commit

Permalink
chore(package.json): upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
bhsd-harry committed Dec 19, 2024
1 parent a19f8b3 commit bf71692
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 7 deletions.
16 changes: 14 additions & 2 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,14 @@ import {
info,
diff,
} from './util/diff';
import type {Config, LintError, TokenTypes, Parser as ParserBase, Stage} from './base';
import type {
Config,
LintError,
TokenTypes,
Parser as ParserBase,
Stage,
AST,
} from './base';
import type {Title} from './lib/title';
import type {Token} from './internal';

Expand Down Expand Up @@ -439,5 +446,10 @@ Object.defineProperties(Parser, def);
// @ts-expect-error mixed export styles
export = Parser;
export default Parser;
export type {Config, LintError, TokenTypes};
export type {
Config,
LintError,
TokenTypes,
AST,
};
export type * from './internal';
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,17 +53,18 @@
"test:real": "node dist/test/real.js"
},
"dependencies": {
"@bhsd/common": "^0.4.6",
"chalk": "^4.1.2"
"@bhsd/common": "^0.5.0",
"@codemirror/lint": "^6.8.4",
"chalk": "^4.1.2",
"codejar-async": "^4.2.5",
"monaco-editor": "^0.52.0"
},
"devDependencies": {
"@codemirror/lint": "^6.8.4",
"@stylistic/eslint-plugin": "^2.11.0",
"@stylistic/stylelint-plugin": "^3.1.1",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"codejar-async": "^4.2.5",
"esbuild": "^0.24.0",
"eslint": "^8.57.1",
"eslint-plugin-es-x": "^8.4.1",
Expand All @@ -76,7 +77,6 @@
"eslint-plugin-regexp": "^2.6.0",
"eslint-plugin-unicorn": "^56.0.1",
"http-server": "^14.1.0",
"monaco-editor": "^0.52.0",
"stylelint": "^16.11.0",
"stylelint-config-recommended": "^14.0.0",
"typescript": "^5.7.2",
Expand Down

0 comments on commit bf71692

Please sign in to comment.