airsense 1.0.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.
Files changed (2) hide show
  1. package/bin/airsense.js +8 -0
  2. package/package.json +18 -0
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env node
2
+
3
+ import open from 'open';
4
+
5
+ const dashboardUrl = 'https://airmonitor-delta.vercel.app/dashboard';
6
+
7
+ console.log('Opening AirSense dashboard...');
8
+ await open(dashboardUrl);
package/package.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "airsense",
3
+ "version": "1.0.0",
4
+ "description": "Open the AirSense dashboard",
5
+ "bin": {
6
+ "airsense": "bin/airsense.js"
7
+ },
8
+ "keywords": [
9
+ "airsense",
10
+ "air-quality"
11
+ ],
12
+ "author": "",
13
+ "license": "ISC",
14
+ "type": "module",
15
+ "dependencies": {
16
+ "open": "^10.0.0"
17
+ }
18
+ }