| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- {
- "name": "@growi/remark-lsx",
- "version": "7.0.3-RC.0",
- "description": "GROWI plugin to list pages",
- "license": "MIT",
- "keywords": [
- "growi",
- "growi-plugin"
- ],
- "files": [
- "dist"
- ],
- "type": "module",
- "scripts": {
- "build": "run-p build:*",
- "build:client": "vite build -c vite.client.config.ts",
- "build:server": "vite build -c vite.server.config.ts",
- "clean": "shx rm -rf dist",
- "dev": "run-p dev:*",
- "dev:client": "vite build -c vite.client.config.ts --mode dev",
- "dev:server": "vite build -c vite.server.config.ts --mode dev",
- "watch": "run-p watch:*",
- "watch:client": "yarn dev:client -w --emptyOutDir=false",
- "watch:server": "yarn dev:server -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:*",
- "test": "vitest run --coverage",
- "version": "yarn version --no-git-tag-version --preid=RC"
- },
- "// comments for dependencies": {
- "escape-string-regexp": "5.0.0 or above exports only ESM"
- },
- "dependencies": {
- "@growi/core": "link:../core",
- "@growi/remark-growi-directive": "link:../remark-growi-directive",
- "@growi/ui": "link:../ui",
- "escape-string-regexp": "^4.0.0",
- "express": "^4.19.2",
- "http-errors": "^2.0.0",
- "mongoose": "^6.11.3",
- "swr": "^2.2.2"
- },
- "devDependencies": {
- "eslint-plugin-regex": "^1.8.0",
- "hast-util-sanitize": "^4.1.0",
- "hast-util-select": "^5.0.5",
- "unified": "^10.1.2",
- "unist-util-visit": "^4.0.0"
- },
- "peerDependencies": {
- "next": "^14",
- "react": "^18.2.0",
- "react-dom": "^18.2.0"
- }
- }
|