-
-
Notifications
You must be signed in to change notification settings - Fork 125
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 757 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 757 Bytes
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
{
"name": "@preact/signals-react-runtime",
"description": "Sub package for @preact/signals-react that contains the pure runtime functions",
"private": true,
"amdName": "reactSignalsRuntime",
"main": "dist/runtime.js",
"module": "dist/runtime.mjs",
"unpkg": "dist/runtime.min.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"mangle": "../../../mangle.json",
"exports": {
".": {
"types": "./dist/index.d.ts",
"module": "./dist/runtime.mjs",
"import": "./dist/runtime.mjs",
"require": "./dist/runtime.js"
}
},
"dependencies": {
"@preact/signals-core": "workspace:^1.3.0",
"use-sync-external-store": "^1.2.0"
},
"peerDependencies": {
"react": "^16.14.0 || 17.x || 18.x"
}
}