-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 4.29 KB
/
Copy pathpackage.json
File metadata and controls
124 lines (124 loc) · 4.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@gnosticdev/highlevel-sdk",
"version": "4.0.3",
"private": false,
"description": "SDK for the HighLevel API",
"keywords": [
"api",
"crm",
"gohighlevel",
"highlevel",
"highlevel api",
"highlevel sdk",
"javascript",
"marketing",
"sdk",
"typescript"
],
"homepage": "https://github.com/gnosticdev/highlevel-api-sdk",
"license": "MIT",
"author": {
"name": "gnosticdev",
"url": "https://github.com/gnosticdev"
},
"repository": {
"type": "git",
"url": "https://github.com/gnosticdev/highlevel-api-sdk"
},
"workspaces": [
".",
"examples/*"
],
"files": [
"dist",
"README.md",
"LICENSE"
],
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./oauth": "./dist/oauth.js",
"./scopes": "./dist/scopes.js",
"./types/agencies": "./dist/types/agencies.js",
"./types/associations": "./dist/types/associations.js",
"./types/blogs": "./dist/types/blogs.js",
"./types/businesses": "./dist/types/businesses.js",
"./types/calendars": "./dist/types/calendars.js",
"./types/campaigns": "./dist/types/campaigns.js",
"./types/common-schemas": "./dist/types/common-schemas.js",
"./types/companies": "./dist/types/companies.js",
"./types/contacts": "./dist/types/contacts.js",
"./types/conversations": "./dist/types/conversations.js",
"./types/courses": "./dist/types/courses.js",
"./types/custom-fields": "./dist/types/custom-fields.js",
"./types/custom-menus": "./dist/types/custom-menus.js",
"./types/email-isv": "./dist/types/email-isv.js",
"./types/emails": "./dist/types/emails.js",
"./types/forms": "./dist/types/forms.js",
"./types/funnels": "./dist/types/funnels.js",
"./types/invoices": "./dist/types/invoices.js",
"./types/links": "./dist/types/links.js",
"./types/locations": "./dist/types/locations.js",
"./types/marketplace": "./dist/types/marketplace.js",
"./types/medias": "./dist/types/medias.js",
"./types/oauth": "./dist/types/oauth.js",
"./types/objects": "./dist/types/objects.js",
"./types/opportunities": "./dist/types/opportunities.js",
"./types/payments": "./dist/types/payments.js",
"./types/phone-system": "./dist/types/phone-system.js",
"./types/products": "./dist/types/products.js",
"./types/proposals": "./dist/types/proposals.js",
"./types/saas-api": "./dist/types/saas-api.js",
"./types/snapshots": "./dist/types/snapshots.js",
"./types/social-media-posting": "./dist/types/social-media-posting.js",
"./types/store": "./dist/types/store.js",
"./types/surveys": "./dist/types/surveys.js",
"./types/users": "./dist/types/users.js",
"./types/voice-ai": "./dist/types/voice-ai.js",
"./types/workflows": "./dist/types/workflows.js",
"./v1": "./dist/v1.js",
"./webhooks": "./dist/webhooks.js",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "bun --bun tsdown",
"clean-install": "rm -rf ./node_modules ./dist ./bun.lock ./examples/*/node_modules && bun i --no-cache",
"download-json-schemas": "bun scripts/download-json-schemas.ts",
"generate-all": "bun scripts/generate-all.ts",
"generate-interface": "bun scripts/generate-interface.ts",
"generate-scopes-types": "bun scripts/generate-scopes-types.ts",
"generate-v1-types": "bun scripts/generate-v1-types.ts",
"generate-v2-types": "bun scripts/generate-v2-types.ts",
"generate-webhooks-types": "bun scripts/generate-webhooks-types.ts",
"generate-base-client": "bun scripts/generate-base-client.ts",
"lint": "bun oxlint --fix && bun oxfmt .",
"release": "bun --env-file .env.local release-it",
"start-test": "bun test --hot",
"typecheck": "tsgo -p ./tsconfig.json"
},
"devDependencies": {
"@types/bun": "1.3.12",
"@typescript/native-preview": "7.0.0-dev.20260410.1",
"json-schema-to-typescript": "15.0.4",
"kleur": "^4.1.5",
"lefthook": "^1.13.6",
"openapi-typescript": "7.10.1",
"oxfmt": "0.44.0",
"oxlint": "1.59.0",
"release-it": "^19.1.0",
"tsdown": "^0.21.7",
"typescript": "6.0.2"
},
"peerDependencies": {
"openapi-fetch": "^0.13.8"
},
"packageManager": "bun@1.1.42",
"trustedDependencies": [
"esbuild",
"lefthook"
]
}