react-iten 0.0.1 → 0.0.2

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 (3) hide show
  1. package/README.md +5 -0
  2. package/index.js +1 -1
  3. package/package.json +26 -5
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # react-iten
2
+
3
+ Reserved package for the upcoming React adapter for `iten`.
4
+
5
+ Use `jotai-iten` today for React apps, or `iten-core` for framework-agnostic routing.
package/index.js CHANGED
@@ -1 +1 @@
1
- // Coming soon see https://github.com/andrewbierman/iten
1
+ throw new Error('react-iten is reserved for the upcoming React adapter. Use jotai-iten today.')
package/package.json CHANGED
@@ -1,9 +1,30 @@
1
1
  {
2
2
  "name": "react-iten",
3
- "version": "0.0.1",
4
- "description": "React adapter for iten — ultralight view router for embedded JS apps. Coming soon.",
5
- "keywords": ["react", "router", "view-router", "embedded"],
3
+ "version": "0.0.2",
4
+ "description": "React adapter for iten — ultralight in-memory router for embedded JS apps. Coming soon.",
5
+ "keywords": [
6
+ "react",
7
+ "router",
8
+ "memory-router",
9
+ "embedded"
10
+ ],
6
11
  "license": "MIT",
7
- "repository": { "type": "git", "url": "https://github.com/andrewbierman/iten" },
8
- "main": "index.js"
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/andrew-bierman/iten.git",
15
+ "directory": "packages/react-iten"
16
+ },
17
+ "bugs": {
18
+ "url": "https://github.com/andrew-bierman/iten/issues"
19
+ },
20
+ "homepage": "https://github.com/andrew-bierman/iten#readme",
21
+ "main": "index.js",
22
+ "files": [
23
+ "index.js",
24
+ "README.md"
25
+ ],
26
+ "publishConfig": {
27
+ "access": "public",
28
+ "registry": "https://registry.npmjs.org/"
29
+ }
9
30
  }