-
-
Notifications
You must be signed in to change notification settings - Fork 104
/
Copy pathpackage.json
74 lines (74 loc) · 1.93 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
{
"name": "@preact/signals-react",
"version": "3.0.1",
"license": "MIT",
"description": "Manage state with style in React",
"keywords": [],
"authors": [
"The Preact Authors (https://github.com/preactjs/signals/contributors)"
],
"repository": {
"type": "git",
"url": "https://github.com/preactjs/signals",
"directory": "packages/react"
},
"bugs": "https://github.com/preactjs/signals/issues",
"homepage": "https://preactjs.com",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/preact"
},
"amdName": "reactSignals",
"main": "dist/signals.js",
"module": "dist/signals.module.js",
"unpkg": "dist/signals.min.js",
"types": "dist/signals.d.ts",
"source": "src/index.ts",
"exports": {
".": {
"types": "./dist/signals.d.ts",
"browser": "./dist/signals.module.js",
"import": "./dist/signals.mjs",
"require": "./dist/signals.js"
},
"./runtime": {
"types": "./runtime/dist/index.d.ts",
"browser": "./runtime/dist/runtime.module.js",
"import": "./runtime/dist/runtime.mjs",
"require": "./runtime/dist/runtime.js"
},
"./runtime/package.json": "./runtime/package.json"
},
"mangle": "../../mangle.json",
"files": [
"src",
"dist",
"runtime/dist",
"runtime/src",
"runtime/package.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"scripts": {
"prepublishOnly": "cd ../.. && pnpm build:react-runtime && pnpm build:react"
},
"dependencies": {
"@preact/signals-core": "workspace:^1.7.0",
"use-sync-external-store": "^1.2.0"
},
"peerDependencies": {
"react": "^16.14.0 || 17.x || 18.x || 19.x"
},
"devDependencies": {
"@types/react": "^18.0.18",
"@types/react-dom": "^18.0.6",
"@types/use-sync-external-store": "^0.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.9.0"
},
"publishConfig": {
"provenance": true
}
}