UNPKG

remark-custom-container

Version:

remark parser plugin for custom directive in markdown

58 lines (57 loc) 1.45 kB
{ "name": "remark-custom-container", "version": "1.3.1", "description": "remark parser plugin for custom directive in markdown", "author": "koka831", "license": "MIT", "type": "module", "export": "dist/index.js", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "repository": { "type": "git", "url": "git@github.com:koka831/remark-custom-container.git" }, "scripts": { "prebuild": "rimraf dist", "build": "run-p build:*", "build:commonjs": "tsc", "build:esm": "tsc -p tsconfig.esm.json", "test": "NODE_OPTIONS=--experimental-vm-modules jest", "lint": "eslint src" }, "files": [ "dist" ], "keywords": [ "markdown", "remark", "unified" ], "dependencies": { "unist-util-visit": "^4.0.0" }, "devDependencies": { "@jest/types": "^29.3.1", "@types/jest": "^29.2.3", "@types/node": "^18.11.9", "@types/unist": "^2.0.3", "@typescript-eslint/eslint-plugin": "^5.45.0", "@typescript-eslint/parser": "^5.45.0", "eslint": "^8.28.0", "eslint-config-prettier": "^8.5.0", "jest": "^29.3.1", "npm-run-all": "^4.1.5", "prettier": "^2.8.0", "rehype-stringify": "^9.0.3", "remark": "^14.0.0", "remark-gfm": "^3.0.0", "remark-rehype": "^10.0.0", "rimraf": "^3.0.2", "ts-jest": "^29.0.3", "ts-node": "^10.9.1", "typescript": "^4.9.3", "unified": "^10.1.0", "vfile": "^5.3.6" } }