This repository was archived by the owner on Sep 16, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
64 lines (64 loc) · 1.5 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "next-google-fonts",
"version": "2.2.0",
"description": "Load Google Fonts Asynchronously in Next.js",
"source": "src/index.tsx",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/joe-bell/next-google-fonts.git"
},
"keywords": [
"next.js",
"google fonts"
],
"author": "Joe Bell (https://joebell.co.uk)",
"license": "MIT",
"bugs": {
"url": "https://github.com/joe-bell/next-google-fonts/issues"
},
"homepage": "https://github.com/joe-bell/next-google-fonts#readme",
"scripts": {
"prepare": "npm run build",
"build": "microbundle --jsx React.createElement --tsconfig tsconfig.json",
"commit": "git-cz"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md,yml}": "prettier --write"
},
"peerDependencies": {
"next": ">= 10.0.7",
"react": ">= 17.0.1",
"react-dom": ">= 17.0.1"
},
"devDependencies": {
"@types/node": "14.14.41",
"@types/react": "17.0.3",
"commitizen": "4.2.3",
"cz-conventional-changelog": "3.3.0",
"husky": "4.3.8",
"lint-staged": "10.5.4",
"microbundle": "0.13.0",
"next": "10.1.3",
"prettier": "2.2.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"typescript": "4.2.4"
}
}