-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.03 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
{
"name": "react-alien-signals",
"version": "0.1.1",
"type": "module",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"LICENSE"
],
"scripts": {
"build": "tsup",
"docs": "npx typedoc src/index.ts",
"docs:preview": "npx typedoc src/index.ts && npx serve docs"
},
"dependencies": {},
"devDependencies": {
"@happy-dom/global-registrator": "^15.11.7",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/bun": "^1.1.15",
"@types/react": "^19.0.3",
"react-dom": "^19.0.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"peerDependencies": {
"alien-signals": "^0.4.13",
"react": ">=18"
},
"peerDependenciesMeta": {
"react": {
"optional": false
},
"alien-signals": {
"optional": false
}
}
}