integrate-sdk 0.1.5 → 0.2.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "integrate-sdk",
3
- "version": "0.1.5",
3
+ "version": "0.2.0",
4
4
  "description": "Type-safe TypeScript SDK for MCP Client with plugin-based OAuth provider configuration",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -32,7 +32,8 @@
32
32
  "test:watch": "bun test --watch tests/protocol tests/plugins tests/client tests/integrations tests/integration/simple-integration.test.ts",
33
33
  "test:unit": "bun test tests/protocol tests/plugins tests/client tests/integrations",
34
34
  "test:integration": "bun test tests/integration/simple-integration.test.ts",
35
- "test:coverage": "bun test --coverage tests/protocol tests/plugins tests/client tests/integrations tests/integration/simple-integration.test.ts"
35
+ "test:coverage": "bun test --coverage tests/protocol tests/plugins tests/client tests/integrations tests/integration/simple-integration.test.ts",
36
+ "prepare": "simple-git-hooks"
36
37
  },
37
38
  "keywords": [
38
39
  "mcp",
@@ -46,10 +47,13 @@
46
47
  "license": "MIT",
47
48
  "devDependencies": {
48
49
  "@types/bun": "latest",
50
+ "simple-git-hooks": "^2.13.1",
49
51
  "typescript": "^5.3.3"
50
52
  },
51
53
  "peerDependencies": {
52
54
  "typescript": ">=5.0.0"
55
+ },
56
+ "simple-git-hooks": {
57
+ "pre-commit": "./scripts/check-version.sh"
53
58
  }
54
- }
55
-
59
+ }