-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 779 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 779 Bytes
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
{
"name": "@your-org/shared-blog-template",
"version": "1.0.0",
"description": "Reusable blog template components for Next.js projects",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build"
},
"keywords": [
"react",
"blog",
"template",
"nextjs",
"typescript"
],
"author": "Your Name",
"license": "MIT",
"peerDependencies": {
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"cpx": "^1.5.0",
"typescript": "^5.0.0"
},
"files": [
"dist",
"README.md"
]
}