UNPKG

jsx-readme

Version:

Generate Readme files with a React-like syntax and package.json-aware helpers.

79 lines (78 loc) 2.35 kB
{ "name": "jsx-readme", "version": "3.0.0", "description": "Generate Readme files with a React-like syntax and package.json-aware helpers.", "main": "./lib/index.js", "types": "lib/index.d.ts", "scripts": { "build": "rimraf lib && tsc -p tsconfig.build.json", "docs": "typedoc && touch docs/.nojekyll && ts-node README.md.tsx", "lint": "eslint src/**/*.ts src/**/*.tsx examples/**/*.tsx test/**/*.tsx", "pretest": "npm run build", "test": "jest && pkg-ok", "watch": "tsc -w -p tsconfig.build.json" }, "engines": { "node": ">=14.4.0" }, "files": [ "lib" ], "keywords": [ "Markdown", "generator", "JSX", "MD", "Readme" ], "author": "Daniel Bartholomae <daniel@bartholomae.name> (https://startup-cto.net)", "funding": "https://github.com/sponsors/dbartholomae", "license": "MIT", "homepage": "https://dbartholomae.github.io/jsx-readme", "repository": "git@github.com:dbartholomae/jsx-readme.git", "bugs": "https://github.com/dbartholomae/jsx-readme/issues", "directories": { "lib": "lib", "doc": "docs", "example": "examples" }, "dependencies": { "@octokit/core": "^5.0.0", "jsx-md": "^4.0.1", "parse-link-header": "^2.0.0" }, "devDependencies": { "@commitlint/cli": "^17.6.3", "@commitlint/config-conventional": "^17.6.3", "@semantic-release/changelog": "^6.0.3", "@semantic-release/git": "^10.0.1", "@semantic-release/github": "^9.0.2", "@swc/core": "^1.3.59", "@swc-node/register": "^1.6.5", "@types/jest": "^29.5.1", "@types/mock-fs": "^4.13.1", "@types/parse-link-header": "^2.0.1", "@types/react": "^18.2.6", "@typescript-eslint/eslint-plugin": "^5.59.6", "@typescript-eslint/parser": "^5.59.6", "eslint": "^8.41.0", "eslint-config-prettier": "^9.0.0", "eslint-plugin-jest": "^27.2.1", "eslint-plugin-jest-formatting": "^3.1.0", "eslint-plugin-prettier": "^5.0.0", "eslint-plugin-react": "^7.32.2", "husky": "^8.0.3", "jest": "^29.5.0", "lint-staged": "^14.0.0", "mock-fs": "^5.2.0", "pkg-ok": "^3.0.0", "prettier": "^3.0.0", "rimraf": "^5.0.1", "semantic-release": "^21.0.2", "ts-jest": "^29.1.0", "ts-node": "^10.9.1", "tslib": "^2.5.2", "typedoc": "^0.24.7", "typescript": "^5.0.4" } }