Skip to content

Commit bd59821

Browse files
committed
chore: update deps
1 parent d69e353 commit bd59821

File tree

6 files changed

+1135
-1435
lines changed

6 files changed

+1135
-1435
lines changed

build.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default defineBuildConfig({
66
entries: [
77
'src/index',
88
],
9-
declaration: true,
9+
declaration: 'node16',
1010
clean: true,
1111
hooks: {
1212
'build:done': async () => {

package.json

Lines changed: 17 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "markdown-it-async",
33
"type": "module",
44
"version": "2.0.0",
5-
"packageManager": "pnpm@9.15.4",
5+
"packageManager": "pnpm@10.5.2",
66
"description": "Enhance markdown-it to support async highlight function.",
77
"author": "Anthony Fu <[email protected]>",
88
"license": "MIT",
@@ -16,22 +16,11 @@
1616
"keywords": [],
1717
"sideEffects": false,
1818
"exports": {
19-
".": {
20-
"types": "./dist/index.d.mts",
21-
"import": "./dist/index.mjs"
22-
}
19+
".": "./dist/index.mjs"
2320
},
2421
"main": "./dist/index.mjs",
2522
"module": "./dist/index.mjs",
2623
"types": "./dist/index.d.mts",
27-
"typesVersions": {
28-
"*": {
29-
"*": [
30-
"./dist/*",
31-
"./dist/index.d.ts"
32-
]
33-
}
34-
},
3524
"files": [
3625
"dist"
3726
],
@@ -41,7 +30,7 @@
4130
"lint": "eslint .",
4231
"prepublishOnly": "nr build",
4332
"release": "bumpp && pnpm publish",
44-
"start": "esno src/index.ts",
33+
"start": "tsx src/index.ts",
4534
"test": "vitest",
4635
"typecheck": "tsc --noEmit",
4736
"prepare": "simple-git-hooks"
@@ -51,22 +40,21 @@
5140
"markdown-it": "^14.1.0"
5241
},
5342
"devDependencies": {
54-
"@antfu/eslint-config": "^3.14.0",
55-
"@antfu/ni": "^23.2.0",
56-
"@antfu/utils": "^8.1.0",
57-
"@types/node": "^22.10.7",
58-
"bumpp": "^9.10.1",
59-
"eslint": "^9.18.0",
60-
"esno": "^4.8.0",
61-
"lint-staged": "^15.4.1",
62-
"pnpm": "^9.15.4",
63-
"shiki": "^1.27.2",
43+
"@antfu/eslint-config": "^4.4.0",
44+
"@antfu/ni": "^23.3.1",
45+
"@types/node": "^22.13.9",
46+
"bumpp": "^10.0.3",
47+
"eslint": "^9.21.0",
48+
"lint-staged": "^15.4.3",
49+
"pnpm": "^10.5.2",
50+
"shiki": "^3.1.0",
6451
"simple-git-hooks": "^2.11.1",
65-
"tinyglobby": "^0.2.10",
66-
"typescript": "^5.7.3",
67-
"unbuild": "^3.3.1",
68-
"vite": "^6.0.7",
69-
"vitest": "^3.0.2"
52+
"tinyglobby": "^0.2.12",
53+
"tsx": "^4.19.3",
54+
"typescript": "^5.8.2",
55+
"unbuild": "^3.5.0",
56+
"vite": "^6.2.0",
57+
"vitest": "^3.0.7"
7058
},
7159
"simple-git-hooks": {
7260
"pre-commit": "pnpm lint-staged"

0 commit comments

Comments
 (0)