@honest-pitches/pitch-sdk 0.4.6 → 0.5.2
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 +146 -0
- package/README.md +38 -69
- package/dist/index.cjs +277 -546
- package/dist/index.cjs.map +4 -4
- package/dist/index.d.mts +3 -4
- package/dist/index.mjs +277 -539
- package/dist/index.mjs.map +4 -4
- package/package.json +7 -6
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@honest-pitches/pitch-sdk",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.5.2",
|
|
4
|
+
"description": "Vendor-agnostic HTTP client for the @honest-pitches/mcp pitcher server. No backend env vars required — pass { apiKey: 'hp_pk_…' } and you're done.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
7
7
|
"module": "./dist/index.mjs",
|
|
@@ -27,9 +27,6 @@
|
|
|
27
27
|
"access": "public",
|
|
28
28
|
"provenance": false
|
|
29
29
|
},
|
|
30
|
-
"dependencies": {
|
|
31
|
-
"node-appwrite": "~23.1.0"
|
|
32
|
-
},
|
|
33
30
|
"devDependencies": {
|
|
34
31
|
"@types/node": "^22.0.0",
|
|
35
32
|
"esbuild": "^0.27.0",
|
|
@@ -43,13 +40,17 @@
|
|
|
43
40
|
"build": "node build.mjs",
|
|
44
41
|
"refresh-vendor": "node scripts/copy-vendor-dist.mjs",
|
|
45
42
|
"test": "vitest run",
|
|
46
|
-
"test:ci": "pnpm run typecheck && pnpm run test && pnpm run test:contract:dev-loop-workspace && pnpm run test:contract:package-identity && pnpm run test:contract:publish-workflow && pnpm run test:contract:npmrc && pnpm run test:contract:bundled-deps && pnpm run test:contract:copy-vendor-dist",
|
|
43
|
+
"test:ci": "pnpm run typecheck && pnpm run test && pnpm run test:contract:dev-loop-workspace && pnpm run test:contract:package-identity && pnpm run test:contract:publish-workflow && pnpm run test:contract:npmrc && pnpm run test:contract:bundled-deps && pnpm run test:contract:copy-vendor-dist && pnpm run test:contract:no-node-appwrite-in-runtime && pnpm run test:contract:config-shape && pnpm run test:contract:esm-bundle-runtime && pnpm run test:contract:pitches-list-method",
|
|
47
44
|
"test:contract:dev-loop-workspace": "node --test scripts/dev-loop-workspace.contract.test.mjs",
|
|
48
45
|
"test:contract:package-identity": "node --test scripts/package-identity.contract.test.mjs",
|
|
49
46
|
"test:contract:publish-workflow": "node --test scripts/publish-workflow.contract.test.mjs",
|
|
50
47
|
"test:contract:npmrc": "node --test scripts/npmrc.contract.test.mjs",
|
|
51
48
|
"test:contract:bundled-deps": "node --test scripts/bundled-deps.contract.test.mjs",
|
|
52
49
|
"test:contract:copy-vendor-dist": "node --test scripts/copy-vendor-dist.contract.test.mjs",
|
|
50
|
+
"test:contract:no-node-appwrite-in-runtime": "node --test scripts/no-node-appwrite-in-runtime.contract.test.mjs",
|
|
51
|
+
"test:contract:config-shape": "node --test scripts/config-shape.contract.test.mjs",
|
|
52
|
+
"test:contract:esm-bundle-runtime": "node --test scripts/esm-bundle-runtime.contract.test.mjs",
|
|
53
|
+
"test:contract:pitches-list-method": "node --test scripts/pitches-list-method.contract.test.mjs",
|
|
53
54
|
"typecheck": "tsc --noEmit"
|
|
54
55
|
}
|
|
55
56
|
}
|