🔧 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,118 +1,106 @@
{ {
"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": {
], "@types/mdast": "^4.0.0",
"dependencies": { "mdast-util-directive": "^3.0.0",
"@types/mdast": "^4.0.0", "micromark-extension-directive": "git+https://git.v-sli.me/HidemaruOwO/micromark-extension-directive.git#main",
"mdast-util-directive": "^3.0.0", "unified": "^11.0.0"
"micromark-extension-directive": "^3.0.0", },
"unified": "^11.0.0" "description": "remark plugin to support directives",
}, "devDependencies": {
"description": "remark plugin to support directives", "@types/node": "^22.0.0",
"devDependencies": { "c8": "^10.0.0",
"@types/node": "^22.0.0", "is-hidden": "^2.0.0",
"c8": "^10.0.0", "prettier": "^3.0.0",
"is-hidden": "^2.0.0", "remark": "^15.0.0",
"prettier": "^3.0.0", "remark-cli": "^12.0.0",
"remark": "^15.0.0", "remark-preset-wooorm": "^10.0.0",
"remark-cli": "^12.0.0", "to-vfile": "^8.0.0",
"remark-preset-wooorm": "^10.0.0", "type-coverage": "^2.0.0",
"to-vfile": "^8.0.0", "typescript": "^5.0.0",
"type-coverage": "^2.0.0", "xo": "^0.60.0"
"typescript": "^5.0.0", },
"xo": "^0.60.0" "exports": "./index.js",
}, "files": ["index.d.ts", "index.js", "lib/"],
"exports": "./index.js", "funding": {
"files": [ "type": "opencollective",
"index.d.ts", "url": "https://opencollective.com/unified"
"index.js", },
"lib/" "keywords": [
], "container",
"funding": { "directive",
"type": "opencollective", "generic",
"url": "https://opencollective.com/unified" "markdown",
}, "mdast",
"keywords": [ "plugin",
"container", "remark-plugin",
"directive", "remark",
"generic", "unified"
"markdown", ],
"mdast", "license": "MIT",
"plugin", "name": "remark-directive",
"remark-plugin", "prettier": {
"remark", "bracketSpacing": false,
"unified" "singleQuote": true,
], "semi": false,
"license": "MIT", "tabWidth": 2,
"name": "remark-directive", "trailingComma": "none",
"prettier": { "useTabs": false
"bracketSpacing": false, },
"singleQuote": true, "remarkConfig": {
"semi": false, "plugins": ["remark-preset-wooorm"]
"tabWidth": 2, },
"trailingComma": "none", "repository": "remarkjs/remark-directive",
"useTabs": false "scripts": {
}, "build": "tsc --build --clean && tsc --build && type-coverage",
"remarkConfig": { "format": "remark --frail --output --quiet -- . && prettier --log-level warn --write -- . && xo --fix",
"plugins": [ "prepack": "npm run build && npm run format",
"remark-preset-wooorm" "test-api": "node --conditions development test/index.js",
] "test-coverage": "c8 --100 --reporter lcov -- npm run test-api",
}, "test": "npm run build && npm run format && npm run test-coverage"
"repository": "remarkjs/remark-directive", },
"scripts": { "sideEffects": false,
"build": "tsc --build --clean && tsc --build && type-coverage", "typeCoverage": {
"format": "remark --frail --output --quiet -- . && prettier --log-level warn --write -- . && xo --fix", "atLeast": 100,
"prepack": "npm run build && npm run format", "strict": true
"test-api": "node --conditions development test/index.js", },
"test-coverage": "c8 --100 --reporter lcov -- npm run test-api", "type": "module",
"test": "npm run build && npm run format && npm run test-coverage" "version": "3.0.1",
}, "xo": {
"sideEffects": false, "overrides": [
"typeCoverage": { {
"atLeast": 100, "files": ["**/*.d.ts"],
"strict": true "rules": {
}, "@typescript-eslint/array-type": [
"type": "module", "error",
"version": "3.0.1", {
"xo": { "default": "generic"
"overrides": [ }
{ ],
"files": [ "@typescript-eslint/ban-types": [
"**/*.d.ts" "error",
], {
"rules": { "extendDefaults": true
"@typescript-eslint/array-type": [ }
"error", ],
{ "@typescript-eslint/consistent-type-definitions": [
"default": "generic" "error",
} "interface"
], ]
"@typescript-eslint/ban-types": [ }
"error", },
{ {
"extendDefaults": true "files": ["test/**/*.js"],
} "rules": {
], "no-await-in-loop": "off"
"@typescript-eslint/consistent-type-definitions": [ }
"error", }
"interface" ],
] "prettier": true,
} "rules": {
}, "logical-assignment-operators": "off"
{ }
"files": [ }
"test/**/*.js"
],
"rules": {
"no-await-in-loop": "off"
}
}
],
"prettier": true,
"rules": {
"logical-assignment-operators": "off"
}
}
} }