react-listing-engine 0.1.0 → 0.1.1

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/CHANGELOG.md +6 -0
  2. package/package.json +10 -18
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # react-listing-engine
2
2
 
3
+ ## 0.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Packaging metadata update.
8
+
3
9
  ## 0.1.0
4
10
 
5
11
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-listing-engine",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "license": "MIT",
5
5
  "description": "Headless, composable listing engine for React: filterable list + Google-Maps multi-layer map, with pluggable data adapters, a filter/dataset registry, injectable components, and a shadcn-compatible styled adapter.",
6
6
  "funding": [
@@ -30,14 +30,6 @@
30
30
  "shadcn"
31
31
  ],
32
32
  "author": "knazark",
33
- "repository": {
34
- "type": "git",
35
- "url": "git+https://github.com/knazark/react-listing-engine.git"
36
- },
37
- "homepage": "https://github.com/knazark/react-listing-engine#readme",
38
- "bugs": {
39
- "url": "https://github.com/knazark/react-listing-engine/issues"
40
- },
41
33
  "type": "module",
42
34
  "sideEffects": [
43
35
  "./dist/styles.css"
@@ -103,6 +95,14 @@
103
95
  "optional": true
104
96
  }
105
97
  },
98
+ "scripts": {
99
+ "build": "tsup",
100
+ "test": "vitest run",
101
+ "test:watch": "vitest",
102
+ "typecheck": "tsc -p tsconfig.json --noEmit",
103
+ "lint": "eslint .",
104
+ "release": "changeset publish"
105
+ },
106
106
  "devDependencies": {
107
107
  "@changesets/cli": "^2.31.1",
108
108
  "@googlemaps/js-api-loader": "^2.1.1",
@@ -131,13 +131,5 @@
131
131
  },
132
132
  "publishConfig": {
133
133
  "access": "public"
134
- },
135
- "scripts": {
136
- "build": "tsup",
137
- "test": "vitest run",
138
- "test:watch": "vitest",
139
- "typecheck": "tsc -p tsconfig.json --noEmit",
140
- "lint": "eslint .",
141
- "release": "changeset publish"
142
134
  }
143
- }
135
+ }