UNPKG

next-json-cms

Version:

Git-based JSON CMS for Next.js projects with real-time preview - supports both app and pages router

101 lines (100 loc) 2.53 kB
{ "name": "next-json-cms", "version": "1.0.16", "description": "Git-based JSON CMS for Next.js projects with real-time preview - supports both app and pages router", "main": "dist/index.js", "bin": { "next-json-cms": "./dist/cli/index.js" }, "scripts": { "dev": "next dev", "build": "next build", "start": "next start", "lint": "next lint", "build:cli": "tsc -p tsconfig.cli.json", "prepare": "npm run build:cli", "test": "jest", "format": "prettier --write .", "validate": "tsc --noEmit", "clean": "rimraf .next dist" }, "dependencies": { "@monaco-editor/react": "^4.6.0", "@types/inquirer": "^9.0.8", "@types/node": "^20.11.19", "@types/react": "^18.2.57", "@types/react-dom": "^18.2.19", "classnames": "^2.5.1", "commander": "^12.0.0", "inquirer": "^12.6.1", "isomorphic-git": "^1.25.3", "lodash": "^4.17.21", "next": "^14.1.0", "react": "^18.2.0", "react-dom": "^18.2.0", "react-json-view": "^1.21.3", "simple-git": "^3.22.0", "typescript": "^5.3.3", "zod": "^3.22.4", "zustand": "^4.5.1" }, "devDependencies": { "@types/jest": "^29.5.12", "@types/lodash": "^4.14.202", "@typescript-eslint/eslint-plugin": "^7.0.2", "@typescript-eslint/parser": "^7.0.2", "autoprefixer": "^10.4.17", "eslint": "^8.56.0", "eslint-config-next": "^14.1.0", "eslint-config-prettier": "^9.1.0", "jest": "^29.7.0", "jest-environment-jsdom": "^29.7.0", "postcss": "^8.4.35", "prettier": "^3.2.5", "rimraf": "^5.0.5", "tailwindcss": "^3.4.1", "ts-jest": "^29.1.2", "ts-node": "^10.9.1" }, "keywords": [ "cms", "json", "git", "nextjs", "editor", "real-time-preview", "app-router", "pages-router" ], "author": "", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/yourusername/next-json-cms.git" }, "bugs": { "url": "https://github.com/yourusername/next-json-cms/issues" }, "engines": { "node": ">=16.0.0" }, "publishConfig": { "access": "public" }, "files": [ "dist", "templates", "LICENSE", "README.md" ], "overrides": { "react-json-view": { "react": "^18.2.0", "react-dom": "^18.2.0" } }, "resolutions": { "react-json-view/react": "^18.2.0", "react-json-view/react-dom": "^18.2.0" } }