-
-
Notifications
You must be signed in to change notification settings - Fork 125
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 728 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 728 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
{
"name": "@preact/signals-react-auto",
"description": "Sub package for @preact/signals-react that patches React to automatically update when signals change",
"private": true,
"amdName": "reactSignalsAuto",
"main": "dist/auto.js",
"module": "dist/auto.mjs",
"unpkg": "dist/auto.min.js",
"types": "dist/index.d.ts",
"mangle": "../../../mangle.json",
"exports": {
".": {
"types": "./dist/index.d.ts",
"module": "./dist/auto.mjs",
"import": "./dist/auto.mjs",
"require": "./dist/auto.js"
}
},
"dependencies": {},
"peerDependencies": {
"@preact/signals-core": "workspace:^1.3.0",
"@preact/signals-react": "workspace:*",
"react": "^16.14.0 || 17.x || 18.x"
}
}