-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.07 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.07 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
{
"name": "@remote-dom/signals",
"type": "module",
"license": "MIT",
"publishConfig": {
"access": "public",
"@remote-dom/registry": "https://registry.npmjs.org"
},
"version": "2.1.0",
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Shopify/remote-dom",
"directory": "packages/signals"
},
"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"
}
},
"types": "./build/typescript/index.d.ts",
"scripts": {
"build": "rollup --config ./rollup.config.js"
},
"peerDependencies": {
"@preact/signals-core": "^1.3.0"
},
"peerDependenciesMeta": {
"@preact/signals-core": {
"optional": true
}
},
"devDependencies": {
"@preact/signals-core": "^1.8.0"
},
"browserslist": [
"defaults and not dead"
],
"dependencies": {
"@remote-dom/core": "workspace:^1.7.0"
}
}