UNPKG

atom-nextjs

Version:

Build a blog in NextJS using components, TailwindCSS, and Atom CMS.

90 lines (89 loc) 1.99 kB
{ "version": "0.3.1", "license": "Apache-2.0", "main": "dist/index.js", "typings": "dist/index.d.ts", "files": [ "dist", "src" ], "description": "Build a blog in NextJS using components, TailwindCSS, and Atom CMS.", "repository": { "type": "git", "url": "git+https://github.com/incogiscool/atom.git" }, "keywords": [ "atom", "nextjs", "cms", "content-management-system", "reactjs", "blog", "blog-engine" ], "bugs": { "url": "https://github.com/incogiscool/atom/issues" }, "homepage": "https://github.com/incogiscool/atom#readme", "engines": { "node": ">=10" }, "scripts": { "start": "tsdx watch", "build": "tsdx build", "test": "tsdx test --passWithNoTests", "lint": "tsdx lint", "prepare": "tsdx build", "size": "size-limit", "analyze": "size-limit --why" }, "peerDependencies": { "react": ">=16" }, "husky": { "hooks": { "pre-commit": "tsdx lint" } }, "prettier": { "printWidth": 80, "semi": true, "singleQuote": true, "trailingComma": "es5" }, "name": "atom-nextjs", "author": "incogiscool", "module": "dist/atom-nextjs.esm.js", "size-limit": [ { "path": "dist/atom-nextjs.cjs.production.min.js", "limit": "10 KB" }, { "path": "dist/atom-nextjs.esm.js", "limit": "10 KB" } ], "devDependencies": { "@size-limit/preset-small-lib": "^11.1.2", "@types/jest": "^29.5.12", "@types/mocha": "^10.0.6", "@types/node": "^20.11.30", "@types/react": "^18.2.67", "@types/react-dom": "^18.2.22", "husky": "^9.0.11", "react": "^18.2.0", "react-dom": "^18.2.0", "size-limit": "^11.1.2", "tsdx": "^0.14.1", "tslib": "^2.6.2", "typescript": "^5.4.3" }, "dependencies": { "next": "^14.2.15", "next-mdx-remote": "^4.4.1", "react-loading-skeleton": "^3.5.0", "rehype-sanitize": "^6.0.0", "remark-gfm": "3.0.0" } }