-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathpackage.json
81 lines (81 loc) · 1.96 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@remote-dom/preact",
"type": "module",
"license": "MIT",
"description": "Utilities for rendering Remote DOM elements using Preact",
"publishConfig": {
"access": "public",
"@remote-dom/registry": "https://registry.npmjs.org"
},
"version": "1.0.0",
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Shopify/remote-dom",
"directory": "packages/preact"
},
"exports": {
".": {
"types": "./build/typescript/index.d.ts",
"quilt:source": "./source/index.ts",
"quilt:esnext": "./build/esnext/index.esnext",
"import": "./build/esm/index.mjs"
},
"./host": {
"types": "./build/typescript/host.d.ts",
"quilt:source": "./source/host.ts",
"quilt:esnext": "./build/esnext/host.esnext",
"import": "./build/esm/host.mjs"
},
"./html": {
"types": "./build/typescript/html.d.ts",
"quilt:source": "./source/html.ts",
"quilt:esnext": "./build/esnext/html.esnext",
"import": "./build/esm/html.mjs"
}
},
"types": "./build/typescript/index.d.ts",
"typesVersions": {
"*": {
"host": [
"./build/typescript/host.d.ts"
],
"html": [
"./build/typescript/html.d.ts"
]
}
},
"sideEffects": false,
"scripts": {
"build": "rollup --config rollup.config.js"
},
"dependencies": {
"@remote-dom/core": "workspace:^1.0.0",
"@remote-dom/signals": "workspace:^1.0.0",
"htm": "^3.1.1"
},
"peerDependencies": {
"@preact/signals": "^1.2.0",
"@preact/signals-core": "^1.3.0",
"preact": "^10.0.0"
},
"peerDependenciesMeta": {
"@preact/signals-core": {
"optional": true
},
"preact": {
"optional": true
}
},
"devDependencies": {
"@preact/signals": "^1.2.0",
"@preact/signals-core": "^1.5.0",
"@quilted/preact-testing": "^0.1.3",
"preact": "^10.19.0"
},
"browserslist": [
"defaults and not dead"
]
}