kayto_ts 0.1.0 → 0.1.1

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 (3) hide show
  1. package/README.md +2 -0
  2. package/package.json +3 -1
  3. package/publish.sh +10 -0
package/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # kayto_ts
2
2
 
3
+ [📦 npm: kayto_ts](https://www.npmjs.com/package/kayto_ts)
4
+
3
5
  🚀 Build robust API integrations faster with `kayto_ts`.
4
6
 
5
7
  - 🔒 End-to-end type safety for `method + path + params + body + response`
package/package.json CHANGED
@@ -1,7 +1,9 @@
1
1
  {
2
2
  "name": "kayto_ts",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Type-safe HTTP client and CLI wrapper for generating and using schemas with kayto.",
5
+ "repository": "https://github.com/vladislav-yemelyanov/kayto_ts",
6
+ "homepage": "https://www.npmjs.com/package/kayto_ts",
5
7
  "module": "src/index.ts",
6
8
  "type": "module",
7
9
  "bin": {
package/publish.sh ADDED
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+
4
+ cd "$(dirname "$0")"
5
+
6
+ npm version patch --no-git-tag-version
7
+ git add .
8
+ git commit -m "upgrade"
9
+ git push
10
+ npm publish