-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 997 Bytes
/
package.json
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
{
"name": "nextjs-breadcrumbs2",
"version": "2.0.4",
"description": "A dynamic, highly customizable breadcrumbs component for Next.js",
"source": "src/index.tsx",
"main": "dist/index.cjs",
"module": "dist/index.module.js",
"unpkg": "dist/index.umd.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/SimonHausdorf/nextjs-breadcrumbs2",
"author": "Simon Hausdorf",
"license": "MIT",
"type": "module",
"contributors": [
"NiklasMencke"
],
"engines": {
"node": ">=16"
},
"scripts": {
"build": "microbundle --no-sourcemap --jsx React.createElement",
"dev": "microbundle watch --no-sourcemap --no-compress --jsx React.createElement"
},
"peerDependencies": {
"next": "^13.0.0",
"react": "^18.2.0"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/react": "^18.0.24",
"microbundle": "^0.15.1",
"next": "^13.0.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"typescript": "^4.8.4"
}
}