-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
50 lines (50 loc) · 1.09 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "next-head-seo",
"source": "./index.tsx",
"version": "0.1.3",
"description": "Tiny SEO plugin for Next.js applications",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"module": "./dist/index.module.js",
"files": [
"dist"
],
"scripts": {
"build": "microbundle --jsx React.createElement --no-sourcemap --compress",
"test": "jest"
},
"peerDependencies": {
"next": "*",
"react": "*",
"react-dom": "*"
},
"devDependencies": {
"@testing-library/react": "^13.4.0",
"@types/jest": "^27.0.2",
"@types/react": "^18.0.26",
"jest": "^27.2.4",
"microbundle": "^0.15.1",
"next": "^13.1.1",
"prettier": "^2.8.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^27.0.5",
"typescript": "^4.9.4"
},
"repository": {
"type": "git",
"url": "https://github.com/catnose99/next-head-seo.git"
},
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid"
},
"license": "MIT",
"keywords": [
"next.js",
"next/head",
"seo"
]
}