@pro6pp/infer-react 0.0.2-beta.0 → 0.0.2-beta.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 (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +25 -5
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # @pro6pp/infer-react
1
+ # Pro6PP Infer React SDK
2
2
 
3
3
  React Hook for the [Pro6PP Infer API](https://www.pro6pp.com/developer/infer/nl/parameters).
4
4
  A headless library to build custom address autocomplete components in React.
package/package.json CHANGED
@@ -1,6 +1,25 @@
1
1
  {
2
2
  "name": "@pro6pp/infer-react",
3
- "version": "0.0.2-beta.0",
3
+ "description": "Headless React one-field input for the Pro6PP Infer API.",
4
+ "homepage": "https://github.com/pro6pp/infer-sdk/tree/main/packages/react",
5
+ "keywords": [
6
+ "react",
7
+ "hook",
8
+ "address",
9
+ "autocomplete",
10
+ "pro6pp",
11
+ "netherlands",
12
+ "germany",
13
+ "postal-code",
14
+ "validation",
15
+ "infer-api",
16
+ "sdk"
17
+ ],
18
+ "bugs": {
19
+ "url": "https://github.com/pro6pp/infer-sdk/issues"
20
+ },
21
+ "sideEffects": false,
22
+ "version": "0.0.2-beta.2",
4
23
  "main": "./dist/index.js",
5
24
  "module": "./dist/index.mjs",
6
25
  "types": "./dist/index.d.ts",
@@ -16,15 +35,15 @@
16
35
  "README.md"
17
36
  ],
18
37
  "scripts": {
19
- "build": "tsup src/index.ts --format cjs,esm --dts --external react",
20
- "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
38
+ "build": "tsup",
39
+ "dev": "tsup --watch",
21
40
  "type-check": "tsc --noEmit"
22
41
  },
23
42
  "peerDependencies": {
24
43
  "react": ">=16"
25
44
  },
26
45
  "dependencies": {
27
- "@pro6pp/infer-core": "0.0.2-beta.0"
46
+ "@pro6pp/infer-core": "0.0.2-beta.2"
28
47
  },
29
48
  "devDependencies": {
30
49
  "@types/react": "^19.2.7"
@@ -35,6 +54,7 @@
35
54
  "license": "MIT",
36
55
  "repository": {
37
56
  "type": "git",
38
- "url": "https://gitlab.d-centralize.nl/dc/pro6pp/pro6pp-infer-sdk"
57
+ "url": "git+https://github.com/pro6pp/infer-sdk.git",
58
+ "directory": "packages/react"
39
59
  }
40
60
  }