-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.63 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "blog-kit",
"version": "2.1.3",
"private": true,
"description": "The ultimate Next.js toolkit for building professional blog systems with markdown.",
"main": "index.js",
"scripts": {
"dev": "pnpm -r dev",
"build": "pnpm -r build",
"check": "npm run lint && npm run format:check && npm run type-check",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
"type-check": "pnpm -r type-check",
"bump:patch": "npm version patch --no-git-tag-version && pnpm -r exec npm version patch --no-git-tag-version",
"bump:minor": "npm version minor --no-git-tag-version && pnpm -r exec npm version minor --no-git-tag-version",
"bump:major": "npm version major --no-git-tag-version && pnpm -r exec npm version major --no-git-tag-version",
"publish:packages": "pnpm -r publish --access public"
},
"keywords": [
"blog",
"markdown",
"react",
"nextjs",
"nextjs-blog",
"blog-engine",
"ssg",
"server-components",
"blog-kit"
],
"author": "Haroon (https://github.com/haroonwaves)",
"license": "MIT",
"packageManager": "pnpm@10.18.3",
"devDependencies": {
"@types/node": "^20.14.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.3.2",
"typescript": "^5.9.3"
}
}