latchkey 0.1.1 → 0.1.3

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/dist/src/cli.js +1 -1
  2. package/package.json +3 -3
package/dist/src/cli.js CHANGED
@@ -19,7 +19,7 @@ catch (error) {
19
19
  program
20
20
  .name('latchkey')
21
21
  .description('A command-line tool that injects API credentials to curl requests to known public APIs.')
22
- .version('0.1.0');
22
+ .version('0.1.3');
23
23
  registerCommands(program, deps);
24
24
  program.parse();
25
25
  //# sourceMappingURL=cli.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "latchkey",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "A CLI tool that injects API credentials into curl requests for known third-party services",
5
5
  "author": "Imbue <hynek@imbue.com>",
6
6
  "repository": {
@@ -12,8 +12,8 @@
12
12
  "url": "https://github.com/imbue-ai/latchkey/issues"
13
13
  },
14
14
  "type": "module",
15
- "main": "dist/index.js",
16
- "types": "dist/index.d.ts",
15
+ "main": "dist/src/index.js",
16
+ "types": "dist/src/index.d.ts",
17
17
  "bin": {
18
18
  "latchkey": "./dist/src/cli.js"
19
19
  },