-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1005 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1005 Bytes
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
{
"name": "@createsend/client",
"description": "A modern, typed, promise based wrapper of the Campaign Monitor API.",
"version": "0.1.1",
"private": false,
"homepage": "https://www.campaignmonitor.com/api/",
"repository": {
"url": "https://github.com/alex-zissis/createsend-js-wrapper"
},
"license": "MIT",
"keywords": [
"createsend",
"campaign monitor",
"api",
"wrapper",
"esp",
"email",
"email marketing"
],
"author": {
"name": "Alex Zissis",
"email": "alex@zico.dev"
},
"scripts": {
"build": "tsc -p tsconfig.json && tsc -p tsconfig.cjs.json"
},
"module": "./dist/esm/index.js",
"main": "./dist/cjs/index.js",
"devDependencies": {
"@types/node": "^18.13.0",
"@types/node-fetch": "^2.6.2",
"ts-node": "^10.9.1",
"typescript": "5.0.0-beta"
},
"optionalDependencies": {
"node-fetch": "^2.6.9"
}
}