UNPKG

poststore

Version:

PostStore can be used with NEXT.JS to create markdown-based blogs.

77 lines (76 loc) 1.97 kB
{ "name": "poststore", "version": "3.0.1", "description": "PostStore can be used with NEXT.JS to create markdown-based blogs.", "main": "./dist/index.js", "module": "./dist/esm/index.mjs", "scripts": { "test": "jest --verbose", "test:all": "npm run test:jest;npm run snapshot test", "snapshot": "NODE_ENV=test ts-node ./scripts/snapshot.ts", "build": "rollup -c", "watch": "rollup -c -w" }, "files": [ "dist/**/*" ], "keywords": [ "next.js", "blog", "post", "blog-builder", "next.js plugin" ], "author": { "name": "BitYounjgae", "email": "bityoungjae@gmail.com", "url": "https://bityoungjae.com" }, "license": "MIT", "dependencies": { "chalk": "^4.1.0", "chokidar": "^3.4.0", "date-fns": "^2.14.0", "gray-matter": "^4.0.2", "ora": "^4.0.4", "prismjs": "^1.20.0", "rehype": "^11.0.0", "rehype-parse": "^7.0.1", "rehype-sanitize": "^3.0.1", "rehype-slug": "^3.0.0", "rehype-stringify": "^8.0.0", "remark-parse": "^8.0.2", "remark-rehype": "^7.0.0", "sharp": "^0.25.4", "unified": "^9.0.0", "unist-util-select": "^3.0.1", "unist-util-visit": "^2.0.2" }, "devDependencies": { "@rollup/plugin-commonjs": "^13.0.0", "@rollup/plugin-json": "^4.1.0", "@types/jest": "^26.0.3", "@types/lodash.isequal": "^4.5.5", "@types/node": "^14.0.13", "@types/prismjs": "^1.16.1", "@types/sharp": "^0.25.0", "cz-conventional-changelog": "^3.2.0", "jest": "^26.1.0", "lodash.isequal": "^4.5.0", "rollup": "^2.18.2", "rollup-plugin-terser": "^6.1.0", "rollup-plugin-typescript2": "^0.27.1", "ts-jest": "^26.1.1", "ts-node": "^8.10.2", "typescript": "^3.9.5" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "repository": { "type": "git", "url": "https://github.com/BitYoungjae/PostStore.git" } }