-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.43 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.43 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "react-partial-hydration",
"description": "React component for partial hydration",
"version": "1.0.0-beta.5",
"license": "MIT",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs.js",
"import": "./dist/index.es.js"
}
},
"sideEffects": false,
"scripts": {
"commit": "cz",
"prepare": "husky install",
"dev": "vite",
"lint": "tsc",
"test": "run-p test:*",
"test:unit": "jest",
"build": "run-p build:*",
"build:scripts": "vite build",
"build:types": "dts-bundle-generator --no-check --no-banner --external-imports=react --external-imports=react-dom --external-imports=node -o dist/index.d.ts lib/index.ts",
"serve": "vite preview",
"release": "semantic-release"
},
"peerDependencies": {
"react": "^16.3.0",
"react-dom": "^16.3.0"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^9.0.1",
"@swc/core": "^1.2.88",
"@swc/jest": "0.1.5",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.0",
"@testing-library/react-hooks": "^7.0.2",
"@types/jest": "^27.0.1",
"@types/node": "^16.9.4",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@vitejs/plugin-react-refresh": "^1.3.6",
"commitizen": "^4.2.4",
"commitlint-config-gitmoji": "^2.2.5",
"cz-emoji": "^1.3.1",
"dts-bundle-generator": "^5.9.0",
"husky": "^7.0.2",
"jest": "^27.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"semantic-release": "^18.0.0",
"semantic-release-gitmoji": "^1.3.4",
"typescript": "^4.3.2",
"vite": "^2.5.10"
},
"author": {
"name": "TomokiMiyauci",
"email": "contact@miyauchi.dev",
"url": "https://miyauchi.dev/"
},
"repository": {
"type": "git",
"url": "https://github.com/TomokiMiyauci/react-patial-hydration.git"
},
"files": [
"dist"
],
"homepage": "https://github.com/TomokiMiyauci/react-patial-hydration#readme",
"bugs": "https://github.com/TomokiMiyauci/react-patial-hydration/issues",
"funding": {
"type": "patreon",
"url": "https://www.patreon.com/tomoki_miyauci"
},
"keywords": [
"react",
"partial",
"progressive",
"hydrate",
"hydration",
"static",
"ssr",
"ssg"
]
}