-
-
Notifications
You must be signed in to change notification settings - Fork 363
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
157 additions
and
140 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,46 @@ | ||
{ | ||
"name": "remark-cli", | ||
"version": "12.0.1", | ||
"description": "CLI to process markdown with remark", | ||
"license": "MIT", | ||
"keywords": [ | ||
"bin", | ||
"cli", | ||
"markdown", | ||
"mdast", | ||
"remark", | ||
"unified" | ||
], | ||
"homepage": "https://remark.js.org", | ||
"repository": "https://github.com/remarkjs/remark/tree/main/packages/remark-cli", | ||
"bugs": "https://github.com/remarkjs/remark/issues", | ||
"funding": { | ||
"type": "opencollective", | ||
"url": "https://opencollective.com/unified" | ||
}, | ||
"author": "Titus Wormer <[email protected]> (https://wooorm.com)", | ||
"contributors": [ | ||
"Titus Wormer <[email protected]> (https://wooorm.com)" | ||
], | ||
"type": "module", | ||
"exports": [], | ||
"bin": { | ||
"remark": "cli.js" | ||
}, | ||
"files": [ | ||
"cli.js" | ||
"bugs": "https://github.com/remarkjs/remark/issues", | ||
"contributors": [ | ||
"Titus Wormer <[email protected]> (https://wooorm.com)" | ||
], | ||
"dependencies": { | ||
"import-meta-resolve": "^4.0.0", | ||
"markdown-extensions": "^2.0.0", | ||
"remark": "^15.0.0", | ||
"unified-args": "^11.0.0" | ||
}, | ||
"description": "CLI to process markdown with remark", | ||
"exports": [], | ||
"files": [ | ||
"cli.js" | ||
], | ||
"funding": { | ||
"type": "opencollective", | ||
"url": "https://opencollective.com/unified" | ||
}, | ||
"homepage": "https://remark.js.org", | ||
"keywords": [ | ||
"bin", | ||
"cli", | ||
"markdown", | ||
"mdast", | ||
"remark", | ||
"unified" | ||
], | ||
"license": "MIT", | ||
"name": "remark-cli", | ||
"repository": "https://github.com/remarkjs/remark/tree/main/packages/remark-cli", | ||
"scripts": {}, | ||
"typeCoverage": { | ||
"atLeast": 100, | ||
"detail": true, | ||
"ignoreCatch": true, | ||
"strict": true | ||
}, | ||
"type": "module", | ||
"version": "12.0.1", | ||
"xo": { | ||
"prettier": true | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,31 @@ | ||
{ | ||
"name": "remark-parse", | ||
"version": "11.0.0", | ||
"author": "Titus Wormer <[email protected]> (https://wooorm.com)", | ||
"bugs": "https://github.com/remarkjs/remark/issues", | ||
"contributors": [ | ||
"Elijah Hamovitz <[email protected]>", | ||
"Eugene Sharygin <[email protected]>", | ||
"Ika <[email protected]>", | ||
"Junyoung Choi <[email protected]>", | ||
"Titus Wormer <[email protected]> (https://wooorm.com)" | ||
], | ||
"dependencies": { | ||
"@types/mdast": "^4.0.0", | ||
"mdast-util-from-markdown": "^2.0.0", | ||
"micromark-util-types": "^2.0.0", | ||
"unified": "^11.0.0" | ||
}, | ||
"description": "remark plugin to add support for parsing markdown input", | ||
"license": "MIT", | ||
"exports": "./index.js", | ||
"files": [ | ||
"index.d.ts", | ||
"index.js", | ||
"lib/" | ||
], | ||
"funding": { | ||
"type": "opencollective", | ||
"url": "https://opencollective.com/unified" | ||
}, | ||
"homepage": "https://remark.js.org", | ||
"keywords": [ | ||
"abstract", | ||
"ast", | ||
|
@@ -16,51 +39,40 @@ | |
"tree", | ||
"unified" | ||
], | ||
"homepage": "https://remark.js.org", | ||
"license": "MIT", | ||
"name": "remark-parse", | ||
"repository": "https://github.com/remarkjs/remark/tree/main/packages/remark-parse", | ||
"bugs": "https://github.com/remarkjs/remark/issues", | ||
"funding": { | ||
"type": "opencollective", | ||
"url": "https://opencollective.com/unified" | ||
}, | ||
"author": "Titus Wormer <[email protected]> (https://wooorm.com)", | ||
"contributors": [ | ||
"Titus Wormer <[email protected]> (https://wooorm.com)", | ||
"Eugene Sharygin <[email protected]>", | ||
"Junyoung Choi <[email protected]>", | ||
"Elijah Hamovitz <[email protected]>", | ||
"Ika <[email protected]>" | ||
], | ||
"sideEffects": false, | ||
"type": "module", | ||
"exports": "./index.js", | ||
"files": [ | ||
"lib/", | ||
"index.d.ts", | ||
"index.js" | ||
], | ||
"dependencies": { | ||
"@types/mdast": "^4.0.0", | ||
"mdast-util-from-markdown": "^2.0.0", | ||
"micromark-util-types": "^2.0.0", | ||
"unified": "^11.0.0" | ||
}, | ||
"scripts": {}, | ||
"sideEffects": false, | ||
"typeCoverage": { | ||
"atLeast": 100, | ||
"detail": true, | ||
"ignoreCatch": true, | ||
"strict": true | ||
}, | ||
"type": "module", | ||
"version": "11.0.0", | ||
"xo": { | ||
"overrides": [ | ||
{ | ||
"files": [ | ||
"**/*.ts" | ||
"**/*.d.ts" | ||
], | ||
"rules": { | ||
"@typescript-eslint/ban-types": "off", | ||
"@typescript-eslint/consistent-type-definitions": "off" | ||
"@typescript-eslint/array-type": [ | ||
"error", | ||
{ | ||
"default": "generic" | ||
} | ||
], | ||
"@typescript-eslint/ban-types": [ | ||
"error", | ||
{ | ||
"extendDefaults": true | ||
} | ||
], | ||
"@typescript-eslint/consistent-type-definitions": [ | ||
"error", | ||
"interface" | ||
] | ||
} | ||
} | ||
], | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,27 @@ | ||
{ | ||
"name": "remark-stringify", | ||
"version": "11.0.0", | ||
"author": "Titus Wormer <[email protected]> (https://wooorm.com)", | ||
"bugs": "https://github.com/remarkjs/remark/issues", | ||
"contributors": [ | ||
"Eugene Sharygin <[email protected]>", | ||
"Titus Wormer <[email protected]> (https://wooorm.com)" | ||
], | ||
"dependencies": { | ||
"@types/mdast": "^4.0.0", | ||
"mdast-util-to-markdown": "^2.0.0", | ||
"unified": "^11.0.0" | ||
}, | ||
"description": "remark plugin to add support for serializing markdown", | ||
"license": "MIT", | ||
"exports": "./index.js", | ||
"files": [ | ||
"index.d.ts", | ||
"index.js", | ||
"lib/" | ||
], | ||
"funding": { | ||
"type": "opencollective", | ||
"url": "https://opencollective.com/unified" | ||
}, | ||
"homepage": "https://remark.js.org", | ||
"keywords": [ | ||
"abstract", | ||
"ast", | ||
|
@@ -19,47 +38,40 @@ | |
"tree", | ||
"unified" | ||
], | ||
"homepage": "https://remark.js.org", | ||
"license": "MIT", | ||
"name": "remark-stringify", | ||
"repository": "https://github.com/remarkjs/remark/tree/main/packages/remark-stringify", | ||
"bugs": "https://github.com/remarkjs/remark/issues", | ||
"funding": { | ||
"type": "opencollective", | ||
"url": "https://opencollective.com/unified" | ||
}, | ||
"author": "Titus Wormer <[email protected]> (https://wooorm.com)", | ||
"contributors": [ | ||
"Titus Wormer <[email protected]> (https://wooorm.com)", | ||
"Eugene Sharygin <[email protected]>" | ||
], | ||
"sideEffects": false, | ||
"type": "module", | ||
"exports": "./index.js", | ||
"files": [ | ||
"lib/", | ||
"index.d.ts", | ||
"index.js" | ||
], | ||
"dependencies": { | ||
"@types/mdast": "^4.0.0", | ||
"mdast-util-to-markdown": "^2.0.0", | ||
"unified": "^11.0.0" | ||
}, | ||
"scripts": {}, | ||
"sideEffects": false, | ||
"typeCoverage": { | ||
"atLeast": 100, | ||
"detail": true, | ||
"ignoreCatch": true, | ||
"strict": true | ||
}, | ||
"type": "module", | ||
"version": "11.0.0", | ||
"xo": { | ||
"overrides": [ | ||
{ | ||
"files": [ | ||
"**/*.ts" | ||
"**/*.d.ts" | ||
], | ||
"rules": { | ||
"@typescript-eslint/ban-types": "off", | ||
"@typescript-eslint/consistent-type-definitions": "off" | ||
"@typescript-eslint/array-type": [ | ||
"error", | ||
{ | ||
"default": "generic" | ||
} | ||
], | ||
"@typescript-eslint/ban-types": [ | ||
"error", | ||
{ | ||
"extendDefaults": true | ||
} | ||
], | ||
"@typescript-eslint/consistent-type-definitions": [ | ||
"error", | ||
"interface" | ||
] | ||
} | ||
} | ||
], | ||
|
Oops, something went wrong.