@rent-scraper/browser-server 1.0.0 → 1.0.8

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/README.md CHANGED
@@ -1,3 +1,3 @@
1
1
  # @rent-scraper/browser-server
2
- Local browser server to help scrape data for rental listings
3
2
 
3
+ Local browser server to help scrape data for rental listings
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rent-scraper/browser-server",
3
- "version": "1.0.0",
3
+ "version": "1.0.8",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {
@@ -15,17 +15,6 @@
15
15
  "author": "Max Stein <maxwell.stein@gmail.com> (https://maxstein.net)",
16
16
  "license": "MIT",
17
17
  "description": "Local browser server to help scrape data for rental listings",
18
- "scripts": {
19
- "dev": "tsx ./src/bin/run-browser-server.ts",
20
- "build": "unbuild",
21
- "start": "node ./dist/bin/run-browser-server.mjs",
22
- "cli:dev": "tsx src/cli.ts",
23
- "cli": "node dist/cli.mjs",
24
- "typecheck": "tsc --noEmit",
25
- "lint": "eslint .",
26
- "lint:fix": "eslint --fix .",
27
- "prepublish": "npm run lint && npm run build"
28
- },
29
18
  "repository": {
30
19
  "type": "git",
31
20
  "url": "git+https://github.com/rent-brigade/rent-scraper.git",
@@ -33,12 +22,12 @@
33
22
  },
34
23
  "dependencies": {
35
24
  "@clack/prompts": "alpha",
36
- "@rent-scraper/api": "workspace:*",
37
- "@rent-scraper/utils": "workspace:*",
38
25
  "bumpp": "^10.2.3",
39
26
  "express": "^4.21.2",
40
27
  "picocolors": "^1.1.1",
41
- "puppeteer": "^24.11.2"
28
+ "puppeteer": "^24.11.2",
29
+ "@rent-scraper/api": "1.0.8",
30
+ "@rent-scraper/utils": "1.0.8"
42
31
  },
43
32
  "devDependencies": {
44
33
  "@types/express": "^5.0.3",
@@ -50,5 +39,15 @@
50
39
  },
51
40
  "engines": {
52
41
  "node": "22.x"
42
+ },
43
+ "scripts": {
44
+ "dev": "tsx ./src/bin/run-browser-server.ts",
45
+ "build": "unbuild",
46
+ "start": "node ./dist/bin/run-browser-server.mjs",
47
+ "cli:dev": "tsx src/cli.ts",
48
+ "cli": "node dist/cli.mjs",
49
+ "typecheck": "tsc --noEmit",
50
+ "lint": "eslint .",
51
+ "lint:fix": "eslint --fix ."
53
52
  }
54
- }
53
+ }