mirror of
https://github.com/jlengrand/open-wc.git
synced 2026-03-10 08:31:19 +00:00
67 lines
1.8 KiB
JSON
67 lines
1.8 KiB
JSON
{
|
|
"name": "@mdjs/core",
|
|
"version": "0.4.0",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"description": "Combine Markdown with JavaScript",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/open-wc/open-wc.git",
|
|
"directory": "packages/mdjs"
|
|
},
|
|
"author": "open-wc",
|
|
"homepage": "https://github.com/open-wc/open-wc/tree/master/packages/mdjs",
|
|
"main": "./index.js",
|
|
"scripts": {
|
|
"prepublishOnly": "../../scripts/insert-header.js",
|
|
"start": "npm run start:stories",
|
|
"start:script": "node ../es-dev-server/dist/cli.js -c demo/script/server.js --root-dir ../../",
|
|
"start:stories": "node ../es-dev-server/dist/cli.js -c demo/stories/server.js --root-dir ../../",
|
|
"test": "npm run test:node",
|
|
"test:node": "mocha test-node",
|
|
"test:watch": "mocha test-node --watch",
|
|
"types:copy": "copyfiles -f \"./types-global/**/*.d.ts\" types"
|
|
},
|
|
"files": [
|
|
"*.d.ts",
|
|
"*.js",
|
|
"src",
|
|
"types"
|
|
],
|
|
"keywords": [
|
|
"open-wc",
|
|
"markdown",
|
|
"unified",
|
|
"remark"
|
|
],
|
|
"dependencies": {
|
|
"@mdjs/mdjs-preview": "^0.2.0",
|
|
"@mdjs/mdjs-story": "^0.0.1",
|
|
"@types/unist": "^2.0.3",
|
|
"@types/vfile": "^4.0.0",
|
|
"es-module-lexer": "^0.3.13",
|
|
"github-markdown-css": "^3.0.1",
|
|
"rehype-autolink-headings": "^2.0.5",
|
|
"rehype-prism-template": "^0.4.1",
|
|
"rehype-raw": "^4.0.1",
|
|
"rehype-slug": "^2.0.3",
|
|
"rehype-stringify": "^6.0.1",
|
|
"remark": "^11.0.2",
|
|
"remark-parse": "^7.0.2",
|
|
"remark-rehype": "^5.0.0",
|
|
"unified": "^8.4.2",
|
|
"unist-util-remove": "^1.0.3",
|
|
"unist-util-visit": "^2.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"demo-wc-card": "^0.1.0",
|
|
"remark-autolink-headings": "^5.2.1",
|
|
"remark-html": "^10.0.0",
|
|
"remark-slug": "^5.1.2",
|
|
"remark-stringify": "^7.0.4"
|
|
},
|
|
"types": "./types/index.d.ts"
|
|
}
|