radish
Version:
Radish is a React-based static site generator that outputs plain HTML and CSS.
57 lines (56 loc) • 1.42 kB
JSON
{
"name": "radish",
"version": "0.2.8",
"type": "module",
"module": "./build/lib/index.js",
"types": "./build/lib/index.d.ts",
"license": "MIT",
"repository": "https://github.com/jakelazaroff/radish",
"homepage": "https://radishjs.com",
"engines": {
"node": ">=16.0.0"
},
"prettier": "@radish/prettier",
"dependencies": {
"@mdx-js/mdx": "^2.1.5",
"@svgr/core": "^6.5.1",
"esbuild": "~0.15.15",
"globby": "^13.1.1",
"gray-matter": "^4.0.3",
"js-yaml": "^4.1.0",
"lightningcss": "^1.16.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^1.3.0",
"rehype-highlight": "^6.0.0",
"remark-gfm": "^3.0.1",
"toml": "^3.0.0",
"ws": "^8.5.0"
},
"devDependencies": {
"@radish/prettier": "*",
"@radish/tsconfig": "*",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.11.9",
"@types/prettier": "^2.4.4",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.11.0",
"typescript": "^4.6.2"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"scripts": {
"clean": "rm -rf build tsconfig.tsbuildinfo",
"build": "yarn clean && tsc",
"prepare": "yarn build"
},
"bin": {
"radish": "./bin/cli.js"
}
}