@owanturist/signal-react 0.0.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.
Files changed (2) hide show
  1. package/README.md +6 -0
  2. package/package.json +54 -0
package/README.md ADDED
@@ -0,0 +1,6 @@
1
+ # `@owanturist/signal-react`
2
+
3
+ [![codecov](https://codecov.io/gh/owanturist/signal/branch/master/graph/badge.svg?token=QP3SXO8E9F)](https://codecov.io/gh/owanturist/signal)
4
+ ![known vulnerabilities](https://snyk.io/test/github/owanturist/signal/badge.svg)
5
+ ![types](https://badgen.net/npm/types/@owanturist/signal-react)
6
+ [![npm version](https://badge.fury.io/js/@owanturist/signal-react.svg)](https://badge.fury.io/js/@owanturist/signal-react)
package/package.json ADDED
@@ -0,0 +1,54 @@
1
+ {
2
+ "name": "@owanturist/signal-react",
3
+ "type": "module",
4
+ "version": "0.0.0",
5
+ "description": "The clean and natural React state management",
6
+ "main": "./dist/index.cjs",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "exports": {
13
+ "types": "./dist/index.d.ts",
14
+ "import": "./dist/index.js",
15
+ "require": "./dist/index.cjs"
16
+ },
17
+ "keywords": [
18
+ "react",
19
+ "react-hooks",
20
+ "state",
21
+ "state-management",
22
+ "store"
23
+ ],
24
+ "author": "Anton Ovechkin <owanturist@gmail.com>",
25
+ "license": "BSD-3-Clause",
26
+ "bugs": {
27
+ "url": "https://github.com/owanturist/signal/issues"
28
+ },
29
+ "repository": "https://github.com/owanturist/signal/tree/master/packages/signal-react",
30
+ "homepage": "https://github.com/owanturist/signal/packages/signal-react#readme",
31
+ "scripts": {
32
+ "typecheck": "tsc --noEmit",
33
+ "build": "tsup src/index.ts --config ../../tsup.config.ts"
34
+ },
35
+ "dependencies": {
36
+ "use-sync-external-store": "^1.6.0"
37
+ },
38
+ "peerDependencies": {
39
+ "@owanturist/signal": "^0.0.0",
40
+ "react": "^18.0.0 || ^19.0.0"
41
+ },
42
+ "devDependencies": {
43
+ "@owanturist/signal": "workspace:*",
44
+ "@testing-library/jest-dom": "^6.9.1",
45
+ "@testing-library/react": "^16.3.2",
46
+ "@types/react": "^19.2.10",
47
+ "@types/use-sync-external-store": "^1.5.0",
48
+ "happy-dom": "^20.4.0",
49
+ "react": "^19.2.4",
50
+ "react-dom": "^19.2.4",
51
+ "vite-tsconfig-paths": "^6.0.5",
52
+ "vitest": "^4.0.18"
53
+ }
54
+ }