react-rx 3.0.1-canary.1 → 3.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +16 -18
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-rx",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1.0",
|
|
4
4
|
"description": "React + RxJS = <3",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"action",
|
|
@@ -66,17 +66,22 @@
|
|
|
66
66
|
"dist",
|
|
67
67
|
"src"
|
|
68
68
|
],
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
|
|
69
|
+
"scripts": {
|
|
70
|
+
"build": "pkg build --strict --clean --check",
|
|
71
|
+
"dev": "pnpm --filter 'react-rx-website' dev",
|
|
72
|
+
"format": "prettier --cache --write .",
|
|
73
|
+
"lint": "eslint --cache .",
|
|
74
|
+
"prepublishOnly": "pnpm build",
|
|
75
|
+
"test": "vitest run --typecheck",
|
|
76
|
+
"watch": "pnpm build -- --watch"
|
|
77
|
+
},
|
|
73
78
|
"browserslist": "extends @sanity/browserslist-config",
|
|
74
79
|
"prettier": "@sanity/prettier-config",
|
|
75
80
|
"dependencies": {
|
|
76
81
|
"observable-callback": "^1.0.3"
|
|
77
82
|
},
|
|
78
83
|
"devDependencies": {
|
|
79
|
-
"@sanity/pkg-utils": "6.
|
|
84
|
+
"@sanity/pkg-utils": "^6.10.0",
|
|
80
85
|
"@sanity/prettier-config": "^1.0.2",
|
|
81
86
|
"@sanity/semantic-release-preset": "^4.1.8",
|
|
82
87
|
"@testing-library/dom": "^10.1.0",
|
|
@@ -84,8 +89,8 @@
|
|
|
84
89
|
"@types/node": "^18.17.5",
|
|
85
90
|
"@types/react": "^18.3.3",
|
|
86
91
|
"@types/react-dom": "^18.3.0",
|
|
87
|
-
"@typescript-eslint/eslint-plugin": "^7.
|
|
88
|
-
"@typescript-eslint/parser": "^7.
|
|
92
|
+
"@typescript-eslint/eslint-plugin": "^7.13.1",
|
|
93
|
+
"@typescript-eslint/parser": "^7.13.1",
|
|
89
94
|
"eslint": "^8.57.0",
|
|
90
95
|
"eslint-config-prettier": "^9.1.0",
|
|
91
96
|
"eslint-plugin-prettier": "^5.1.3",
|
|
@@ -94,7 +99,7 @@
|
|
|
94
99
|
"eslint-plugin-react-hooks": "^4.6.2",
|
|
95
100
|
"eslint-plugin-simple-import-sort": "^12.1.0",
|
|
96
101
|
"jsdom": "^24.1.0",
|
|
97
|
-
"prettier": "^3.3.
|
|
102
|
+
"prettier": "^3.3.2",
|
|
98
103
|
"react": "^18.3.1",
|
|
99
104
|
"react-dom": "^18.3.1",
|
|
100
105
|
"react-test-renderer": "^18.3.1",
|
|
@@ -107,12 +112,5 @@
|
|
|
107
112
|
"react": "^18.3 || >=19.0.0-rc",
|
|
108
113
|
"rxjs": "^7"
|
|
109
114
|
},
|
|
110
|
-
"
|
|
111
|
-
|
|
112
|
-
"dev": "pnpm --filter 'react-rx-website' dev",
|
|
113
|
-
"format": "prettier --cache --write .",
|
|
114
|
-
"lint": "eslint --cache .",
|
|
115
|
-
"test": "vitest run --typecheck",
|
|
116
|
-
"watch": "pnpm build -- --watch"
|
|
117
|
-
}
|
|
118
|
-
}
|
|
115
|
+
"packageManager": "pnpm@9.4.0"
|
|
116
|
+
}
|