@live-demo/core
Version:
Core components for @live-demo plugins.
84 lines • 2.24 kB
JSON
{
"name": "@live-demo/core",
"version": "0.2.0",
"description": "Core components for @live-demo plugins.",
"bugs": "https://github.com/ViktorZhurbin/live-demo/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/ViktorZhurbin/live-demo.git",
"directory": "packages/core"
},
"homepage": "https://live-demo.pages.dev",
"license": "MIT",
"exports": {
".": {
"types": "./dist/node/index.d.ts",
"import": "./dist/node/index.mjs",
"default": "./dist/node/index.mjs"
},
"./web": {
"types": "./dist/web/index.d.ts",
"import": "./dist/web/index.mjs",
"default": "./dist/web/index.mjs"
},
"./web/index.css": "./dist/web/index.css"
},
"files": [
"dist"
],
"dependencies": {
"@codemirror/lang-javascript": "^6.2.4",
"@mantine/hooks": "^8.3.10",
"@rsbuild/plugin-react": "^1.4.2",
"@tabler/icons-react": "^3.36.0",
"@uiw/codemirror-theme-vscode": "^4.25.4",
"@uiw/react-codemirror": "^4.25.4",
"clsx": "^2.1.1",
"oxc-parser": "^0.103.0",
"react-error-boundary": "^6.0.0",
"react-resizable-panels": "^3.0.4"
},
"devDependencies": {
"@babel/types": "^7.28.5",
"@oxc-project/types": "^0.103.0",
"@rollup/browser": "^4.53.5",
"@testing-library/jest-dom": "^6.9.1",
"@types/babel__core": "^7.20.5",
"@types/babel__standalone": "^7.1.9",
"@types/mdast": "^3.0.15",
"@types/node": "^24.9.2",
"@types/react": "^19",
"react": "^19",
"tsdown": "^0.18.1",
"typescript": "^5.9.3",
"unplugin-lightningcss": "^0.4.3",
"vitest": "^4.0.16"
},
"peerDependencies": {
"@mdx-js/mdx": ">=2.3.0",
"mdast-util-mdx": ">=3.0.0",
"react": ">=17.0.0",
"react-dom": ">=17.0.0",
"remark-gfm": ">=3.0.0",
"unified": ">=10.0.0",
"unist-util-visit": ">=4.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"react",
"live-demo",
"playground",
"live-code",
"code-editor"
],
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
}
}