-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.47 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
{
"name": "next-server-logger",
"version": "1.0.0",
"license": "MIT",
"keywords": [
"next.js",
"next",
"getServerSideProps",
"getInitialProps",
"getStaticProps",
"next logger",
"next server side logger"
],
"description": "NextServerLogger is `next.js helper tool` that enable passing server logs, which define inside getServerSideProps, getStaticProps, or getInitialProps, to browser",
"homepage": "https://github.com/eddie0329/NextServerLogger",
"repository": "https://github.com/eddie0329/NextServerLogger.git",
"author": {
"name": "Eddie Choi",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/eddie0329/NextServerLogger/issues",
"email": "[email protected]"
},
"files": [
"dist/*"
],
"engines": {
"node": ">=16.5.0"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.js"
}
},
"type": "module",
"types": "./dist/index.d.ts",
"main": "dist/index.umd.cjs",
"module": "dist/index.js",
"scripts": {
"deploy": "yarn build && yarn publish",
"dev": "vite build --watch",
"build": "tsc && vite build",
"install-peer": "yarn add [email protected] --peer"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@vitejs/plugin-react": "^3.0.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.34.1",
"typescript": "^4.9.3",
"vite": "^4.0.0"
},
"peerDependencies": {
"react": "^17.0.0"
},
"dependencies": {
"flatted": "^3.2.7"
}
}