| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- {
- "name": "@growi/presentation",
- "version": "7.0.1-RC.0",
- "description": "GROWI plugin for presentation",
- "license": "MIT",
- "keywords": [
- "growi",
- "growi-plugin"
- ],
- "module": "dist/presentation.js",
- "types": "dist/index.d.ts",
- "files": [
- "dist"
- ],
- "type": "module",
- "scripts": {
- "build": "vite build",
- "clean": "shx rm -rf dist",
- "dev": "vite build --mode dev",
- "watch": "yarn dev -w --emptyOutDir=false",
- "lint:js": "yarn eslint **/*.{js,jsx,ts,tsx}",
- "lint:styles": "stylelint --allow-empty-input src/**/*.scss src/**/*.css",
- "lint:typecheck": "tsc",
- "lint": "run-p lint:*",
- "version": "yarn version --no-git-tag-version --preid=RC"
- },
- "dependencies": {
- "@growi/core": "link:../core"
- },
- "devDependencies": {
- "@marp-team/marp-core": "^3.6.0",
- "@types/reveal.js": "^4.4.1",
- "eslint-plugin-regex": "^1.8.0",
- "hast-util-sanitize": "^4.1.0",
- "hast-util-select": "^5.0.5",
- "mdast-util-frontmatter": "^1.0.0",
- "mdast-util-gfm": "^2.0.1",
- "mdast-util-to-markdown": "^1.3.0",
- "react-markdown": "^8.0.7",
- "remark-frontmatter": "^4.0.1",
- "remark-stringify": "^10.0.0",
- "reveal.js": "^4.4.0",
- "unified": "^10.1.2",
- "unist-util-find-after": "^4.0.0",
- "unist-util-visit": "^4.0.0"
- },
- "peerDependencies": {
- "@marp-team/marpit": "*",
- "next": "^14",
- "react": "^18.2.0",
- "react-dom": "^18.2.0"
- }
- }
|