@se-studio/hubspot 1.0.0 → 2.0.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/CHANGELOG.md +7 -0
- package/package.json +16 -16
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@se-studio/hubspot",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "HubSpot tracking and API-driven form rendering for Next.js marketing sites",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -30,14 +30,6 @@
|
|
|
30
30
|
"*.md",
|
|
31
31
|
"docs"
|
|
32
32
|
],
|
|
33
|
-
"scripts": {
|
|
34
|
-
"build": "tsc --project tsconfig.build.json",
|
|
35
|
-
"dev": "tsc --project tsconfig.build.json --watch",
|
|
36
|
-
"type-check": "tsc --noEmit",
|
|
37
|
-
"lint": "biome lint .",
|
|
38
|
-
"test": "vitest run",
|
|
39
|
-
"clean": "rm -rf dist .turbo *.tsbuildinfo"
|
|
40
|
-
},
|
|
41
33
|
"keywords": [
|
|
42
34
|
"hubspot",
|
|
43
35
|
"forms",
|
|
@@ -48,11 +40,11 @@
|
|
|
48
40
|
"react"
|
|
49
41
|
],
|
|
50
42
|
"peerDependencies": {
|
|
51
|
-
"@se-studio/core-data-types": "workspace:*",
|
|
52
|
-
"@se-studio/core-ui": "workspace:*",
|
|
53
43
|
"next": ">=15.5.0 <16",
|
|
54
44
|
"react": "^19.0.0",
|
|
55
|
-
"react-dom": "^19.0.0"
|
|
45
|
+
"react-dom": "^19.0.0",
|
|
46
|
+
"@se-studio/core-data-types": "1.5.1",
|
|
47
|
+
"@se-studio/core-ui": "1.10.0"
|
|
56
48
|
},
|
|
57
49
|
"dependencies": {
|
|
58
50
|
"@hubspot/api-client": "^12.0.0",
|
|
@@ -61,8 +53,6 @@
|
|
|
61
53
|
},
|
|
62
54
|
"devDependencies": {
|
|
63
55
|
"@biomejs/biome": "^2.5.0",
|
|
64
|
-
"@se-studio/core-data-types": "workspace:*",
|
|
65
|
-
"@se-studio/core-ui": "workspace:*",
|
|
66
56
|
"@types/node": "^24.13.2",
|
|
67
57
|
"@types/react": "^19.2.17",
|
|
68
58
|
"@types/react-dom": "^19.2.3",
|
|
@@ -71,6 +61,16 @@
|
|
|
71
61
|
"react": "^19.2.0",
|
|
72
62
|
"react-dom": "^19.2.0",
|
|
73
63
|
"typescript": "^6.0.3",
|
|
74
|
-
"vitest": "^4.1.9"
|
|
64
|
+
"vitest": "^4.1.9",
|
|
65
|
+
"@se-studio/core-data-types": "1.5.1",
|
|
66
|
+
"@se-studio/core-ui": "1.10.0"
|
|
67
|
+
},
|
|
68
|
+
"scripts": {
|
|
69
|
+
"build": "tsc --project tsconfig.build.json",
|
|
70
|
+
"dev": "tsc --project tsconfig.build.json --watch",
|
|
71
|
+
"type-check": "tsc --noEmit",
|
|
72
|
+
"lint": "biome lint .",
|
|
73
|
+
"test": "vitest run",
|
|
74
|
+
"clean": "rm -rf dist .turbo *.tsbuildinfo"
|
|
75
75
|
}
|
|
76
|
-
}
|
|
76
|
+
}
|