gtfs 4.14.4 → 4.15.0
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/dist/bin/gtfs-export.js +29 -10
- package/dist/bin/gtfs-export.js.map +1 -1
- package/dist/bin/gtfs-import.js +293 -277
- package/dist/bin/gtfs-import.js.map +1 -1
- package/dist/bin/gtfsrealtime-update.js +171 -145
- package/dist/bin/gtfsrealtime-update.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +356 -337
- package/dist/index.js.map +1 -1
- package/package.json +6 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gtfs",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.15.0",
|
|
4
4
|
"description": "Import GTFS transit data into SQLite and query routes, stops, times, fares and more",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"transit",
|
|
@@ -62,7 +62,8 @@
|
|
|
62
62
|
"Oliv4945",
|
|
63
63
|
"Kyle Ramey",
|
|
64
64
|
"Anton Bracke",
|
|
65
|
-
"Emma K Alexandra <emma@emma.sh>"
|
|
65
|
+
"Emma K Alexandra <emma@emma.sh>",
|
|
66
|
+
"Mael <laem@kont.me>"
|
|
66
67
|
],
|
|
67
68
|
"type": "module",
|
|
68
69
|
"main": "./dist/index.js",
|
|
@@ -78,7 +79,8 @@
|
|
|
78
79
|
"scripts": {
|
|
79
80
|
"prepare": "husky",
|
|
80
81
|
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
|
|
81
|
-
"build": "tsup"
|
|
82
|
+
"build": "tsup",
|
|
83
|
+
"build-watch": "tsup --watch"
|
|
82
84
|
},
|
|
83
85
|
"exports": {
|
|
84
86
|
".": {
|
|
@@ -124,7 +126,7 @@
|
|
|
124
126
|
"prettier": "^3.3.3",
|
|
125
127
|
"ts-jest": "^29.2.5",
|
|
126
128
|
"ts-node": "^10.9.2",
|
|
127
|
-
"tsup": "^8.
|
|
129
|
+
"tsup": "^8.3.0",
|
|
128
130
|
"typescript": "~5.5.4"
|
|
129
131
|
},
|
|
130
132
|
"engines": {
|