-
-
Notifications
You must be signed in to change notification settings - Fork 234
/
package.json
166 lines (166 loc) · 5.44 KB
/
package.json
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
{
"name": "node-zendesk",
"version": "5.0.13",
"type": "commonjs",
"description": "A trusted Zendesk API client library for Node.js and the browser, lovingly maintained for over 10 years.",
"keywords": [
"zendesk",
"API",
"api-client",
"api-wrapper",
"browser-library",
"buddha",
"chat-api",
"customer-service",
"customer-support",
"helpdesk",
"knowledge-base",
"node-library",
"rest-api",
"sdk",
"support-api",
"support-ticket",
"supportdesk",
"ticket-management",
"ticketing",
"zendesk-api",
"zendesk-client",
"zendesk-integration",
"zendesk-platform",
"zendesk-sdk"
],
"homepage": "https://github.com/blakmatrix/node-zendesk",
"repository": {
"type": "git",
"url": "git://github.com/blakmatrix/node-zendesk.git"
},
"main": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/types/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/types/index.d.ts",
"default": "./dist/index.js"
}
},
"./clients/*": {
"import": {
"types": "./dist/types/clients/*.d.ts",
"default": "./dist/clients/*.js"
},
"require": {
"types": "./dist/types/clients/*.d.ts",
"default": "./dist/clients/*.js"
}
},
"./clients/*/*": {
"import": {
"types": "./dist/types/clients/*/*.d.ts",
"default": "./dist/clients/*/*.js"
},
"require": {
"types": "./dist/types/clients/*/*.d.ts",
"default": "./dist/clients/*/*.js"
}
},
"./clients/*/*/*": {
"import": {
"types": "./dist/types/clients/*/*/*.d.ts",
"default": "./dist/clients/*/*/*.js"
},
"require": {
"types": "./dist/types/clients/*/*/*.d.ts",
"default": "./dist/clients/*/*/*.js"
}
}
},
"files": [
"dist"
],
"scripts": {
"clean:dist": "npx rimraf ./dist",
"esbuild": "npx esbuild ./src/index.js --bundle --outdir=dist --platform=node --target=node18 --minify --packages=external --format=cjs",
"build:types": "npx -p typescript tsc ./src/**/**/*.js --declaration --allowJs --emitDeclarationOnly --outDir dist/types",
"build": "npm run clean:dist && npm run build:types && npm run esbuild",
"prepublishOnly": "npm run build",
"postpublish": "npm run clean:dist",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "xo",
"lint:fix": "xo --fix",
"docs:code": "npx typedoc --out ./docs/code --plugin typedoc-plugin-markdown 'dist/**/*.ts'",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"docs:deploy-github-pages": "npm run build && npm run docs:code && npm run docs:build",
"release": "git push origin --follow-tags"
},
"author": "Farrin Reid <[email protected]>",
"contributors": [
"Adil H <[email protected]>",
"Amal Khezami <[email protected]>",
"Anastasi Bakolias <[email protected]>",
"Azharuddin <[email protected]>",
"Bas <[email protected]>",
"Blair Anderson <[email protected]>",
"Brian Hartvigsen <[email protected]>",
"Carl-Fredrik Herö <[email protected]>",
"Colin Loretz <[email protected]>",
"David Kapell <[email protected]>",
"Eike Bernhardt <[email protected]>",
"Eike Thienemann-Dehde <[email protected]>",
"Eric Davis <[email protected]>",
"Eriks Reks <[email protected]>",
"Fred Souza <[email protected]>",
"genius-fx <[email protected]>",
"genius-fx <[email protected]>",
"Heriberto Madrigal <[email protected]>",
"Iconecd <[email protected]>",
"Ignigena <[email protected]>",
"James Greene <[email protected]>",
"Jeff Zabel <[email protected]>",
"Marcelo Luiz Onhate <[email protected]>",
"Mathias Anderssén <[email protected]>",
"matthewschmidt <matthewschmidt.users.github.com>",
"Nie Xiaochen <[email protected]>",
"Oleksandr Pidlisnyi <[email protected]>",
"oleksiy-turchanikov <[email protected]>",
"Roman Onufryk <[email protected]>",
"Shuan Wang <[email protected]>",
"Stuart McGrigor <[email protected]>",
"Wade Grandoni <[email protected]>"
],
"license": "MIT",
"funding": [
{
"type": "individual",
"url": "https://github.com/blakmatrix/node-zendesk?sponsor=1"
}
],
"bugs": {
"url": "https://github.com/blakmatrix/node-zendesk/issues"
},
"engines": {
"node": ">= 18"
},
"dependencies": {
"cross-fetch": "^4.0.0"
},
"devDependencies": {
"@vitest/coverage-v8": "^2.0.5",
"dotenv": "^16.4.0",
"eslint-plugin-jsdoc": "^48.0.2",
"nock": "^13.5.0",
"typedoc": "^0.26.5",
"typedoc-plugin-markdown": "^4.2.3",
"vitepress": "^1.3.1",
"vitepress-sidebar": "^1.24.1",
"vitest": "^2.0.5",
"vue-github-button": "^3.1.0",
"xo": "^0.59.3"
}
}