mta-gtfs-static 0.0.0-202505271200 → 0.0.0-202505271305

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
@@ -4,8 +4,9 @@ This package contains JSON exports of the static GTFS data. It is updated once p
4
4
 
5
5
  ## Usage
6
6
 
7
- You can directly import the RAW JSON files:
7
+ You can either import either the JS or JSON files. Depending on your needs.
8
8
 
9
9
  ```js
10
- import bus_bk from "mta-gtfs-static/gtfs/subway/routes.json";
10
+ import subway_routes from "mta-gtfs-static/gtfs_js/subway/routes.js";
11
+ import subway_routes from "mta-gtfs-static/gtfs_json/subway/routes.js";
11
12
  ```