solid-markdown
Version:
Markdown renderer for solid-js
124 lines (123 loc) • 3.18 kB
JSON
{
"name": "solid-markdown",
"version": "2.0.14",
"description": "Markdown renderer for solid-js",
"license": "MIT",
"keywords": [
"remark",
"unified",
"markdown",
"commonmark",
"gfm",
"ast",
"solid",
"solid-js",
"solid-js-component",
"component"
],
"author": "Andi Rosca <andi23rosca@gmail.com>",
"contributors": [
{
"name": "Andi Rosca",
"url": "https://github.com/andi23rosca"
},
{
"name": "High1",
"url": "https://github.com/high1"
},
{
"name": "Patrick Heneise",
"url": "https://github.com/patrickheneise"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/andi23rosca/solid-markdown.git"
},
"homepage": "https://github.com/andi23rosca/solid-markdown#readme",
"bugs": {
"url": "https://github.com/andi23rosca/solid-markdown/issues"
},
"files": [
"dist"
],
"private": false,
"sideEffects": false,
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"browser": {},
"exports": {
"solid": {
"development": "./dist/dev.jsx",
"import": "./dist/index.jsx"
},
"development": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/dev.js"
}
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"typesVersions": {},
"scripts": {
"dev": "vite serve dev",
"build": "tsup",
"test": "concurrently pnpm:test:*",
"test:client": "vitest",
"test:ssr": "pnpm run test:client --mode ssr",
"prepublishOnly": "pnpm build",
"format": "prettier --ignore-path .gitignore -w \"src/**/*.{js,ts,json,css,tsx,jsx}\" \"dev/**/*.{js,ts,json,css,tsx,jsx}\"",
"lint": "concurrently pnpm:lint:*",
"lint:code": "eslint --ignore-path .gitignore --max-warnings 0 src/**/*.{js,ts,tsx,jsx}",
"lint:types": "tsc --noEmit",
"update-deps": "pnpm up -Li"
},
"dependencies": {
"comma-separated-tokens": "^2.0.3",
"property-information": "^6.3.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"space-separated-tokens": "^2.0.2",
"style-to-object": "^0.3.0",
"unified": "^11.0.5",
"unist-util-visit": "^4.1.2",
"vfile": "^6.0.3"
},
"peerDependencies": {
"solid-js": "^1.6.0"
},
"devDependencies": {
"@biomejs/biome": "^1.3.1",
"@types/hast": "^2.3.7",
"@types/unist": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"concurrently": "^8.2.2",
"esbuild": "^0.18.20",
"esbuild-plugin-solid": "^0.5.0",
"eslint": "^8.52.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"jsdom": "^22.1.0",
"prettier": "3.0.0",
"remark-gfm": "^4.0.0",
"solid-js": "^1.8.5",
"tsup": "^7.2.0",
"tsup-preset-solid": "^2.1.0",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vite-plugin-solid": "^2.7.2",
"vitest": "^0.33.0"
},
"packageManager": "pnpm@8.6.0",
"engines": {
"node": ">=18",
"pnpm": ">=8.6.0"
}
}