🔧 directive looks like zenn (bun.lockb, package.json)
Some checks are pending
main / lts/hydrogen (push) Waiting to run
main / node (push) Waiting to run

This commit is contained in:
ひでまる 2025-02-06 21:57:28 +09:00
parent 103c85adba
commit 722e6bee28
2 changed files with 104 additions and 116 deletions

BIN
bun.lockb Executable file

Binary file not shown.

View file

@ -1,13 +1,11 @@
{ {
"author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)", "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
"bugs": "https://github.com/remarkjs/remark-directive/issues", "bugs": "https://github.com/remarkjs/remark-directive/issues",
"contributors": [ "contributors": ["Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"],
"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
],
"dependencies": { "dependencies": {
"@types/mdast": "^4.0.0", "@types/mdast": "^4.0.0",
"mdast-util-directive": "^3.0.0", "mdast-util-directive": "^3.0.0",
"micromark-extension-directive": "^3.0.0", "micromark-extension-directive": "git+https://git.v-sli.me/HidemaruOwO/micromark-extension-directive.git#main",
"unified": "^11.0.0" "unified": "^11.0.0"
}, },
"description": "remark plugin to support directives", "description": "remark plugin to support directives",
@ -25,11 +23,7 @@
"xo": "^0.60.0" "xo": "^0.60.0"
}, },
"exports": "./index.js", "exports": "./index.js",
"files": [ "files": ["index.d.ts", "index.js", "lib/"],
"index.d.ts",
"index.js",
"lib/"
],
"funding": { "funding": {
"type": "opencollective", "type": "opencollective",
"url": "https://opencollective.com/unified" "url": "https://opencollective.com/unified"
@ -56,9 +50,7 @@
"useTabs": false "useTabs": false
}, },
"remarkConfig": { "remarkConfig": {
"plugins": [ "plugins": ["remark-preset-wooorm"]
"remark-preset-wooorm"
]
}, },
"repository": "remarkjs/remark-directive", "repository": "remarkjs/remark-directive",
"scripts": { "scripts": {
@ -79,9 +71,7 @@
"xo": { "xo": {
"overrides": [ "overrides": [
{ {
"files": [ "files": ["**/*.d.ts"],
"**/*.d.ts"
],
"rules": { "rules": {
"@typescript-eslint/array-type": [ "@typescript-eslint/array-type": [
"error", "error",
@ -102,9 +92,7 @@
} }
}, },
{ {
"files": [ "files": ["test/**/*.js"],
"test/**/*.js"
],
"rules": { "rules": {
"no-await-in-loop": "off" "no-await-in-loop": "off"
} }