cleanup and dep update

This commit is contained in:
Niccolo Borgioli 2024-10-07 11:11:19 +02:00
parent a6c56e536a
commit 06e5b80a0e
4 changed files with 7 additions and 9 deletions

BIN
bun.lockb

Binary file not shown.

View File

@ -34,9 +34,9 @@
"prepublishOnly": "bun run build"
},
"devDependencies": {
"bun-types": "latest",
"markdown-it": "^13.0.2",
"typescript": "^5.0.0"
"@types/bun": "^1.1.10",
"markdown-it": "^14.1.0",
"typescript": "^5.6.2"
},
"engines": {
"node": ">=14"

View File

@ -1,5 +1,5 @@
import { readFile } from 'fs/promises'
import { join } from 'path'
import { readFile } from 'node:fs/promises'
import { join } from 'node:path'
import MarkdownIt from 'markdown-it'
import { Options, importPlugin } from '../src/index.ts'

View File

@ -6,13 +6,11 @@
"moduleResolution": "bundler",
"moduleDetection": "force",
"allowImportingTsExtensions": true,
"skipLibCheck": true,
"emitDeclarationOnly": true,
"outDir": "./dist",
"composite": true,
"strict": true,
"types": [
"bun-types" // add Bun global
]
"strict": true
},
"include": ["./src"]
}