-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
54 lines (54 loc) · 1.22 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
{
"name": "preact-iso",
"version": "2.8.1",
"type": "module",
"main": "src/index.js",
"module": "src/index.js",
"types": "src/index.d.ts",
"exports": {
".": "./src/index.js",
"./router": "./src/router.js",
"./lazy": "./src/lazy.js",
"./prerender": "./src/prerender.js",
"./hydrate": "./src/hydrate.js"
},
"license": "MIT",
"description": "Isomorphic utilities for Preact",
"author": "The Preact Authors (https://preactjs.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/preactjs/preact-iso.git"
},
"files": [
"src",
"!src/internal.d.ts",
"LICENSE",
"package.json",
"README.md"
],
"scripts": {
"test": "npm run test:node && npm run test:browser",
"test:browser": "wtr test/*.test.js",
"test:node": "uvu test/node"
},
"peerDependencies": {
"preact": ">=10",
"preact-render-to-string": ">=6.4.0"
},
"devDependencies": {
"@types/mocha": "^10.0.7",
"@types/sinon-chai": "^3.2.12",
"@web/dev-server-esbuild": "^1.0.2",
"@web/test-runner": "^0.18.3",
"chai": "^5.1.1",
"htm": "^3.1.1",
"preact": "^10.24.3",
"preact-render-to-string": "^6.5.11",
"sinon": "^18.0.0",
"sinon-chai": "^4.0.0",
"uvu": "^0.5.6"
},
"overrides": {
"@web/dev-server-core": "0.7.1"
}
}