@walkeros/server-destination-hubspot 3.4.0-next-1776749829492

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 ADDED
@@ -0,0 +1,76 @@
1
+ {
2
+ "name": "@walkeros/server-destination-hubspot",
3
+ "description": "HubSpot CRM server destination for walkerOS (@hubspot/api-client, custom events + contact upsert)",
4
+ "version": "3.4.0-next-1776749829492",
5
+ "license": "MIT",
6
+ "exports": {
7
+ ".": {
8
+ "types": "./dist/index.d.ts",
9
+ "import": "./dist/index.mjs",
10
+ "require": "./dist/index.js"
11
+ },
12
+ "./dev": {
13
+ "types": "./dist/dev.d.ts",
14
+ "import": "./dist/dev.mjs",
15
+ "require": "./dist/dev.js"
16
+ },
17
+ "./walkerOS.json": "./dist/walkerOS.json",
18
+ "./examples": {
19
+ "types": "./dist/examples/index.d.ts",
20
+ "import": "./dist/examples/index.mjs",
21
+ "require": "./dist/examples/index.js"
22
+ }
23
+ },
24
+ "files": [
25
+ "dist/**"
26
+ ],
27
+ "scripts": {
28
+ "build": "tsup --silent",
29
+ "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
30
+ "dev": "jest --watchAll --colors",
31
+ "typecheck": "tsc --noEmit",
32
+ "lint": "eslint \"**/*.ts*\"",
33
+ "test": "jest",
34
+ "update": "npx npm-check-updates -u && npm update"
35
+ },
36
+ "dependencies": {
37
+ "@hubspot/api-client": "^13.0.0",
38
+ "@walkeros/core": "3.4.0-next-1776749829492",
39
+ "@walkeros/server-core": "3.4.0-next-1776749829492"
40
+ },
41
+ "devDependencies": {
42
+ "@walkeros/collector": "3.4.0-next-1776749829492"
43
+ },
44
+ "repository": {
45
+ "url": "git+https://github.com/elbwalker/walkerOS.git",
46
+ "directory": "packages/server/destinations/hubspot"
47
+ },
48
+ "author": "elbwalker <hello@elbwalker.com>",
49
+ "homepage": "https://github.com/elbwalker/walkerOS#readme",
50
+ "bugs": {
51
+ "url": "https://github.com/elbwalker/walkerOS/issues"
52
+ },
53
+ "walkerOS": {
54
+ "type": "destination",
55
+ "platform": [
56
+ "server"
57
+ ],
58
+ "docs": "https://www.walkeros.io/docs/destinations/server/hubspot"
59
+ },
60
+ "keywords": [
61
+ "walkerOS",
62
+ "walkerOS-destination",
63
+ "destination",
64
+ "server",
65
+ "hubspot",
66
+ "crm",
67
+ "custom-events",
68
+ "contact-management"
69
+ ],
70
+ "funding": [
71
+ {
72
+ "type": "GitHub Sponsors",
73
+ "url": "https://github.com/sponsors/elbwalker"
74
+ }
75
+ ]
76
+ }