local-risk-alert-feed 0.2.3 → 0.2.4

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/.env.example +27 -0
  2. package/package.json +3 -2
package/.env.example ADDED
@@ -0,0 +1,27 @@
1
+ # Local Risk Alert Feed - Environment Variables
2
+ # Copy this file to .env and fill in your values
3
+
4
+ # =============================================================================
5
+ # OPTIONAL API KEYS
6
+ # These are only needed if you use the corresponding plugins
7
+ # =============================================================================
8
+
9
+ # Ticketmaster Discovery API (for PhoenixEventsPlugin)
10
+ # Get your key at: https://developer.ticketmaster.com/
11
+ # Free tier: 5,000 API calls per day
12
+ TICKETMASTER_API_KEY=
13
+
14
+ # EPA AirNow API (for AirNowPlugin)
15
+ # Get your key at: https://docs.airnowapi.org/account/request/
16
+ # Free, requires registration
17
+ AIRNOW_API_KEY=
18
+
19
+ # =============================================================================
20
+ # NO API KEY REQUIRED
21
+ # These plugins use public data sources
22
+ # =============================================================================
23
+ # - NWSWeatherPlugin (National Weather Service)
24
+ # - PhoenixFirePlugin (Phoenix Fire Dept ArcGIS)
25
+ # - NIFCWildfirePlugin (National Interagency Fire Center)
26
+ # - ArizonaTrafficPlugin (Arizona DOT ArcGIS)
27
+ # - PhoenixConventionCenterPlugin (Ungerboeck public API)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "local-risk-alert-feed",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "description": "TypeScript library for aggregating local risk alerts from multiple data sources via a plugin system",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/esm/index.js",
@@ -48,7 +48,8 @@
48
48
  }
49
49
  },
50
50
  "files": [
51
- "dist"
51
+ "dist",
52
+ ".env.example"
52
53
  ],
53
54
  "scripts": {
54
55
  "build": "npm run build:esm && npm run build:cjs && npm run build:types",