@rent-scraper/scrape-listings 1.0.0 → 1.0.9

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 +2 -1
  2. package/package.json +15 -16
package/README.md CHANGED
@@ -1,2 +1,3 @@
1
1
  # @rent-scraper/scrape-listings
2
- Scrape data from rental listings
2
+
3
+ Scrape data from rental listings
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rent-scraper/scrape-listings",
3
- "version": "1.0.0",
3
+ "version": "1.0.9",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {
@@ -18,17 +18,6 @@
18
18
  "files": [
19
19
  "dist"
20
20
  ],
21
- "scripts": {
22
- "build": "unbuild",
23
- "start": "node --env-file-if-exists=.env dist/bin/run-scrape-listings.mjs",
24
- "dev": "tsx --env-file-if-exists=.env src/bin/run-scrape-listings.ts",
25
- "cli:dev": "tsx --env-file-if-exists=.env src/cli.ts",
26
- "cli": "node --env-file-if-exists=.env dist/cli.mjs",
27
- "typecheck": "tsc --noEmit",
28
- "lint": "eslint .",
29
- "lint:fix": "eslint --fix .",
30
- "prepublish": "npm run lint && npm run build"
31
- },
32
21
  "repository": {
33
22
  "type": "git",
34
23
  "url": "git+https://github.com/rent-brigade/rent-scraper.git",
@@ -36,13 +25,13 @@
36
25
  },
37
26
  "dependencies": {
38
27
  "@clack/prompts": "alpha",
39
- "@rent-scraper/api": "workspace:*",
40
- "@rent-scraper/utils": "workspace:*",
41
28
  "axios": "^1.10.0",
42
29
  "bumpp": "^10.2.3",
43
30
  "dayjs": "^1.11.13",
44
31
  "minimist": "^1.2.8",
45
- "picocolors": "^1.1.1"
32
+ "picocolors": "^1.1.1",
33
+ "@rent-scraper/api": "1.0.9",
34
+ "@rent-scraper/utils": "1.0.9"
46
35
  },
47
36
  "devDependencies": {
48
37
  "@types/minimist": "^1.2.5",
@@ -51,5 +40,15 @@
51
40
  },
52
41
  "engines": {
53
42
  "node": "22.x"
43
+ },
44
+ "scripts": {
45
+ "build": "unbuild",
46
+ "start": "node --env-file-if-exists=.env dist/bin/run-scrape-listings.mjs",
47
+ "dev": "tsx --env-file-if-exists=.env src/bin/run-scrape-listings.ts",
48
+ "cli:dev": "tsx --env-file-if-exists=.env src/cli.ts",
49
+ "cli": "node --env-file-if-exists=.env dist/cli.mjs",
50
+ "typecheck": "tsc --noEmit",
51
+ "lint": "eslint .",
52
+ "lint:fix": "eslint --fix ."
54
53
  }
55
- }
54
+ }