@interactivethings/scripts 0.0.2 → 0.0.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.
package/.prettierrc ADDED
@@ -0,0 +1,4 @@
1
+ {
2
+ "tabWidth": 2,
3
+ "useTabs": false
4
+ }
@@ -8,7 +8,8 @@ import fs from "fs";
8
8
 
9
9
  import { ArgumentParser } from "argparse";
10
10
  import { mapValues, pick } from "remeda";
11
- import { $IntentionalAny } from "src/utils/types";
11
+
12
+ import { $IntentionalAny } from "./types";
12
13
 
13
14
  const simplifyValues = (
14
15
  x: { value: unknown } | string | null
package/package.json CHANGED
@@ -1,11 +1,15 @@
1
1
  {
2
2
  "name": "@interactivethings/scripts",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "main": "index.js",
5
5
  "repository": "git@github.com:interactivethings/ixt-scripts.git",
6
6
  "author": "Interactive Things <we@interactivethings.com>",
7
7
  "license": "MIT",
8
+ "dependencies": {
9
+ "argparse": "^2.0.1",
10
+ "remeda": "^1.19.0"
11
+ },
8
12
  "devDependencies": {
9
- "argparse": "^2.0.1"
13
+ "@types/node": "^20.3.1"
10
14
  }
11
15
  }
package/types.ts ADDED
@@ -0,0 +1 @@
1
+ export type $IntentionalAny = any