-
-
Notifications
You must be signed in to change notification settings - Fork 108
/
Copy pathpackage.json
37 lines (37 loc) · 909 Bytes
/
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
{
"name": "preact-iso",
"version": "2.3.1",
"description": "Isomorphic utilities for Preact",
"main": "./index.js",
"module": "./index.js",
"types": "./index.d.ts",
"type": "module",
"scripts": {
"test-build": "node --experimental-modules test/bundle-using-wmr.js",
"test": "node --experimental-vm-modules node_modules/.bin/jest"
},
"exports": {
".": "./index.js",
"./router": "./router.js",
"./lazy": "./lazy.js",
"./prerender": "./prerender.js",
"./hydrate": "./hydrate.js"
},
"author": "The Preact Authors (https://preactjs.com)",
"repository": {
"type": "git",
"url": "https://github.com/preactjs/wmr",
"directory": "packages/preact-iso"
},
"license": "MIT",
"devDependencies": {
"htm": "^3.0.4",
"jest": "26.6.3",
"preact": "^10.5.12",
"preact-render-to-string": "^5.1.12"
},
"peerDependencies": {
"preact": ">=10",
"preact-render-to-string": ">=5"
}
}