conductor-node 0.0.2 → 0.0.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.
package/README.md CHANGED
@@ -4,6 +4,11 @@ The Conductor Node.js library provides convenient access to the Conductor API fr
4
4
 
5
5
  There are zero dependencies.
6
6
 
7
+ ## Requirements
8
+
9
+ 1. A running version of QuickBooks Desktop with QuickBooks Web Connector configured for Conductor. See the [Conductor Getting Started guide](https://www.notion.so/conductor-io/Conductor-Documentation-Getting-Started-7f0f42593d444337b0b3200c771d98e6) for help.
10
+ 2. A Conductor API key from Danny.
11
+
7
12
  ## Installation
8
13
 
9
14
  ```sh
package/package.json CHANGED
@@ -1,9 +1,8 @@
1
1
  {
2
2
  "name": "conductor-node",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Conductor API wrapper",
5
5
  "author": "Danny Nemer <hi@DannyNemer.com>",
6
- "repository": "git@github.com:conductor-io/conductor-node.git",
7
6
  "main": "dist/index.js",
8
7
  "types": "dist/index.d.ts",
9
8
  "scripts": {
package/tsconfig.json CHANGED
@@ -2,7 +2,6 @@
2
2
  "compilerOptions": {
3
3
  "target": "ESNext",
4
4
  "module": "NodeNext",
5
- // Required for npm.
6
5
  "declaration": true,
7
6
  "outDir": "./dist"
8
7
  }