@custom-elements-manifest/to-markdown
Version:
Custom-elements.json is a file format that describes custom elements. This format will allow tooling and IDEs to give rich information about the custom elements in a given project. It is, however, very experimental and things are subject to change. Follow
64 lines (63 loc) • 1.61 kB
JSON
{
"name": "@custom-elements-manifest/to-markdown",
"version": "0.1.0",
"description": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/open-wc/custom-elements-manifest.git",
"directory": "packages/to-markdown"
},
"author": "open-wc",
"homepage": "https://github.com/open-wc/custom-elements-manifest",
"types": "types/main.d.ts",
"bugs": {
"url": "https://github.com/open-wc/custom-elements-manifest"
},
"main": "index.js",
"type": "module",
"scripts": {
"prepare": "npm run build",
"build": "run-s build:*",
"build:browser": "esbuild index.js --outfile=dist/browser.js --format=esm --bundle --minify",
"build:cjs": "esbuild index.js --outfile=dist/index.cjs --format=cjs --bundle",
"test": "uvu test"
},
"files": [
"*.d.ts",
"*.js",
"lib/**/*",
"dist/**/*"
],
"keywords": [
"custom-elements",
"custom-elements-json",
"custom-elements-manifest",
"customelements",
"webcomponents",
"customelementsjson",
"customelementsmanifest",
"markdown",
"md"
],
"contributors": [
"Pascal Schilp <pascalschilp@gmail.com>",
"Benny Powers <web@bennypowers.com>"
],
"exports": {
".": {
"import": "./index.js",
"require": "./dist/index.cjs",
"browser": "./dist/browser.js"
}
},
"dependencies": {
"mdast-builder": "^1.1.1",
"mdast-util-from-markdown": "^1.0.4",
"mdast-util-gfm": "^1.0.0",
"mdast-util-to-markdown": "^1.0.1",
"remark-gfm": "^1.0.0",
"remark-stringify": "^9.0.1",
"unified": "^9.2.1"
}
}