-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
116 lines (116 loc) · 2.97 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "react-rx",
"version": "4.1.11",
"description": "React + RxJS = <3",
"keywords": [
"action",
"behavior",
"concurrent",
"es6",
"events",
"external",
"hooks",
"observables",
"observe",
"pipe",
"react",
"react18",
"react19",
"reactive",
"realtime",
"rx",
"rxjs",
"sanity",
"sanity-io",
"store",
"streams",
"subject",
"suspense",
"sync",
"typesafe",
"typescript",
"use"
],
"homepage": "https://react-rx.dev",
"bugs": {
"url": "https://github.com/sanity-io/react-rx/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sanity-io/react-rx.git"
},
"license": "MIT",
"author": "Sanity.io <hello@sanity.io>",
"contributors": [
"Bjørge Næss <bjoerge@gmail.com>",
"Cody Olsen <stipsan@gmail.com> (https://github.com/stipsan)"
],
"sideEffects": false,
"type": "module",
"exports": {
".": {
"source": "./src/index.ts",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "pkg build --strict --clean --check",
"dev": "pnpm --filter 'react-rx-website' dev",
"format": "prettier --cache --write .",
"lint": "eslint --cache .",
"prepublishOnly": "pnpm build",
"test": "vitest run --typecheck --retry=30",
"watch": "pnpm build -- --watch"
},
"browserslist": "extends @sanity/browserslist-config",
"prettier": "@sanity/prettier-config",
"dependencies": {
"observable-callback": "^1.0.3",
"react-compiler-runtime": "19.0.0-beta-55955c9-20241229",
"use-effect-event": "^1.0.2"
},
"devDependencies": {
"@sanity/pkg-utils": "^6.12.3",
"@sanity/prettier-config": "^1.0.3",
"@sanity/semantic-release-preset": "^5.0.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.1.0",
"@types/node": "^18.17.5",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"@vitejs/plugin-react": "^4.3.4",
"babel-plugin-react-compiler": "19.0.0-beta-55955c9-20241229",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-compiler": "19.0.0-beta-55955c9-20241229",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"jsdom": "^24.1.0",
"prettier": "^3.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-test-renderer": "^19.0.0",
"rxjs": "^7.8.1",
"semantic-release": "^24.2.0",
"typescript": "5.7.2",
"vitest": "^2.1.8"
},
"peerDependencies": {
"react": "^18.3 || >=19.0.0-0",
"rxjs": "^7"
},
"packageManager": "pnpm@9.15.2"
}