UNPKG

@penjc/homepage

Version:

个人主页模板,支持博客、随笔等功能

106 lines (105 loc) 2.57 kB
{ "name": "@penjc/homepage", "version": "1.1.0", "description": "个人主页模板,支持博客、随笔等功能", "bin": { "create-homepage": "./bin/create-homepage.js" }, "files": [ ".github/workflows/**/*", "app/**/*", "components/**/*", "content/**/*", "lib/**/*", "styles/**/*", "public/**/*", "docs/**/*", "bin/**/*", "*.config.js", "tsconfig.json", "site.config.example.ts", "site.config.ts", "README.md", "LICENSE" ], "scripts": { "dev": "next dev --port 4000", "build": "next build", "start": "npx serve out -p 4000", "build:github": "NODE_ENV=production GITHUB_PAGES=true npm run build", "preview": "npm run build && npm run start", "preview:github": "npm run build:github && npm run start", "lint": "next lint", "type-check": "tsc --noEmit", "prepublishOnly": "npm run type-check", "create": "node ./bin/create-homepage.js" }, "dependencies": { "@heroicons/react": "^2.2.0", "@tailwindcss/line-clamp": "^0.4.4", "@tailwindcss/typography": "^0.5.16", "@types/prismjs": "^1.26.5", "@vercel/analytics": "^1.1.0", "feed": "^4.2.2", "framer-motion": "^10.16.0", "gray-matter": "^4.0.3", "lucide-react": "^0.294.0", "marked": "^4.3.0", "next": ">=13.0.0", "prismjs": "^1.30.0", "react": ">=18.0.0", "react-dom": ">=18.0.0", "react-markdown": "^8.0.7", "remark": "^15.0.1", "remark-gfm": "^4.0.0", "remark-html": "^16.0.1", "rss": "^1.2.2", "serve": "^14.2.1" }, "devDependencies": { "@types/node": "^18.0.0", "@types/react": "^18.2.0", "@types/react-dom": "^18.2.0", "@types/rss": "^0.0.32", "autoprefixer": "^10.4.16", "eslint": "^8.52.0", "eslint-config-next": "^13.5.0", "postcss": "^8.4.31", "tailwindcss": "^3.3.5", "typescript": "^5.2.0" }, "peerDependencies": { "next": ">=13.0.0", "react": ">=18.0.0", "react-dom": ">=18.0.0" }, "keywords": [ "personal-website", "blog", "thoughts", "next.js", "react", "tailwindcss", "template", "starter", "modern", "homepage" ], "author": "penjc", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/penjc/homepage" }, "bugs": { "url": "https://github.com/penjc/homepage/issues" }, "homepage": "https://github.com/penjc/homepage#readme", "engines": { "node": ">=16.0.0", "npm": ">=8.0.0" }, "publishConfig": { "access": "public" } }