-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.08 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
{
"name": "react-ssr-side-effects",
"version": "1.0.2",
"description": "Thread safe fork of react-side-effect",
"type": "module",
"sideEffects": false,
"main": "./lib/index.cjs",
"module": "./lib/index.esm.js",
"scripts": {
"build": "npm run build:bundle",
"build:bundle": "node --experimental-modules scripts/es-build.mjs",
"clean": "rm -rf lib",
"test": "echo \"Error: no test specified\" && exit 0"
},
"files": [
"LICENSE",
"README.md",
"lib/"
],
"license": "MIT",
"devDependencies": {
"esbuild": "^0.24.0",
"react": "^18.3.1"
},
"peerDependencies": {
"react": "^16.6.0 || ^17.0.0 || ^18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/karankraina/react-ssr-side-effects.git"
},
"keywords": [
"react",
"server side rendering",
"javascript",
"ssr"
],
"author": "Karan Raina <karanraina1996@gmail.com>",
"bugs": {
"url": "https://github.com/karankraina/react-ssr-side-effects/issues"
},
"homepage": "https://github.com/karankraina/react-ssr-side-effects#readme"
}