@sysprompthub/sdk 2.0.0 → 2.0.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 (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # @sysprompthub/sdk
2
2
 
3
- Node.js SDK for managing and syncing system prompts from [SysPromptHub](https://sysprompthub.com) to your AI assistant configurations.
3
+ Node.js SDK for managing and syncing system prompts from [SysPromptHub](https://www.sysprompthub.com) to your AI assistant configurations.
4
4
 
5
- > 🌐 Please see [@sysprompthub/cli](https://www.npmjs.com/package/@sysprompthub) for the command-line interface
5
+ > 🌐 Please see [@sysprompthub/cli](https://www.npmjs.com/package/@sysprompthub/cli) for the command-line interface
6
6
  >
7
7
  > 🌐 For VS Code integration, see the [SysPromptHub Extension](https://marketplace.visualstudio.com/items?itemName=sysprompthub.sysprompthub)
8
8
  >
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sysprompthub/sdk",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "SDK for syncing system prompts from SysPromptHub",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -44,6 +44,7 @@
44
44
  "test:watch": "vitest",
45
45
  "test:ui": "vitest --ui",
46
46
  "typecheck": "tsc --noEmit",
47
- "preversion": "pnpm run build && pnpm test"
47
+ "preversion": "pnpm run build && pnpm test",
48
+ "tag": "git tag --force sdk-v${npm_package_version} && git push --tags --force"
48
49
  }
49
50
  }