-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.01 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.01 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
{
"name": "pandadoc-node-client",
"version": "7.0.0-rc.9",
"description": "The Official PandaDoc Node client SDK",
"author": "PandaDoc",
"repository": {
"type": "git",
"url": "https://github.com/PandaDoc/pandadoc-api-node-client.git"
},
"bugs": {
"url": "https://github.com/PandaDoc/pandadoc-api-node-client/issues"
},
"homepage": "https://github.com/PandaDoc/pandadoc-api-node-client#readme",
"keywords": [
"PandaDoc",
"SDK"
],
"license": "MIT",
"main": "./dist/index.js",
"type": "commonjs",
"exports": {
".": {
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"typings": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build"
},
"dependencies": {
"node-fetch": "^2.7.0",
"@types/node-fetch": "^2.6.13",
"@types/node": "^16.18.126",
"form-data": "^4.0.4",
"btoa": "^1.2.1",
"es6-promise": "^4.2.4"
},
"devDependencies": {
"typescript": "^4.0"
}
}