-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathpackage.json
104 lines (104 loc) · 2.78 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@remote-dom/core",
"type": "module",
"license": "MIT",
"description": "A collection of DOM-based utilities for synchronizing elements between JavaScript environments",
"publishConfig": {
"access": "public",
"@remote-dom/registry": "https://registry.npmjs.org"
},
"version": "1.6.1",
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Shopify/remote-dom",
"directory": "packages/core"
},
"exports": {
".": {
"types": "./build/typescript/index.d.ts",
"quilt:source": "./source/index.ts",
"quilt:esnext": "./build/esnext/index.esnext",
"import": "./build/esm/index.mjs",
"require": "./build/cjs/index.cjs"
},
"./elements": {
"types": "./build/typescript/elements.d.ts",
"quilt:source": "./source/elements.ts",
"quilt:esnext": "./build/esnext/elements.esnext",
"import": "./build/esm/elements.mjs",
"require": "./build/cjs/elements.cjs"
},
"./html": {
"types": "./build/typescript/html.d.ts",
"quilt:source": "./source/html.ts",
"quilt:esnext": "./build/esnext/html.esnext",
"import": "./build/esm/html.mjs",
"require": "./build/cjs/html.cjs"
},
"./polyfill": {
"types": "./build/typescript/polyfill.d.ts",
"quilt:source": "./source/polyfill.ts",
"quilt:esnext": "./build/esnext/polyfill.esnext",
"import": "./build/esm/polyfill.mjs",
"require": "./build/cjs/polyfill.cjs"
},
"./receivers": {
"types": "./build/typescript/receivers.d.ts",
"quilt:source": "./source/receivers.ts",
"quilt:esnext": "./build/esnext/receivers.esnext",
"import": "./build/esm/receivers.mjs",
"require": "./build/cjs/receivers.cjs"
}
},
"types": "./build/typescript/index.d.ts",
"typesVersions": {
"*": {
"elements": [
"./build/typescript/elements.d.ts"
],
"html": [
"./build/typescript/html.d.ts"
],
"polyfill": [
"./build/typescript/polyfill.d.ts"
],
"receivers": [
"./build/typescript/receivers.d.ts"
]
}
},
"sideEffects": [
"./source/polyfill.ts",
"./build/cjs/polyfill.cjs",
"./build/esm/polyfill.mjs",
"./build/esnext/polyfill.esnext"
],
"scripts": {
"build": "rollup --config ./rollup.config.js"
},
"dependencies": {
"@remote-dom/polyfill": "workspace:^1.4.2",
"htm": "^3.1.1"
},
"peerDependencies": {
"@preact/signals-core": "^1.3.0"
},
"peerDependenciesMeta": {
"@preact/signals-core": {
"optional": true
},
"preact": {
"optional": true
}
},
"devDependencies": {
"@preact/signals-core": "^1.8.0",
"@quilted/testing": "^0.1.6"
},
"browserslist": [
"defaults and not dead"
]
}