@pipe0/client 0.0.1 → 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/CHANGELOG.md ADDED
@@ -0,0 +1,13 @@
1
+ # @pipe0/client
2
+
3
+ ## 0.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - a308f31: Add types to client
8
+
9
+ ## 0.0.2
10
+
11
+ ### Patch Changes
12
+
13
+ - fc54a81: Change package dependency structure
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipe0/client",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "type": "module",
@@ -10,6 +10,7 @@
10
10
  },
11
11
  "description": "Client library for pipe0",
12
12
  "module": "./dist/index.js",
13
+ "types": "dist/index.d.ts",
13
14
  "files": [
14
15
  "dist",
15
16
  "LICENSE",
@@ -43,7 +44,6 @@
43
44
  "author": "pipe0",
44
45
  "scripts": {
45
46
  "client:generate": "openapi-typescript http://localhost:8080/openapi -o ./src/generated/openapi.types.ts",
46
- "build": "rm -rf ./dist && tsc -p ./tsconfig.production.json",
47
- "dev": " tsc -b ./tsconfig.production.json --watch --noEmit"
47
+ "build": "rm -rf ./dist && tsc -p ./tsconfig.production.json"
48
48
  }
49
49
  }