-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.31 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
{
"name": "use-link-prefetch",
"version": "0.1.1",
"main": "./dist/index.js",
"module": "./dist/index.modern.js",
"types": "./dist/index.d.ts",
"source": "./index.tsx",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"prepublish": "yarn build",
"build": "microbundle --jsx React.createElement --compress --no-sourcemap",
"start": "microbundle --jsx React.createElement --watch"
},
"dependencies": {},
"peerDependencies": {
"next": "*",
"react": "*",
"react-dom": "*"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/preset-env": "^7.13.10",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.13.0",
"@testing-library/react": "^11.2.5",
"@types/jest": "^26.0.21",
"@types/next": "^9.0.0",
"@types/react": "^16.9.53",
"babel-jest": "^26.6.3",
"jest": "^26.6.3",
"microbundle": "^0.12.3",
"next": "^12.0.8",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"typescript": "^4.0.3"
},
"repository": {
"type": "git",
"url": "https://github.com/lalit2005/use-link-prefetch.git"
},
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid"
}
}